Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert regression, restoring material based salvage permissions #5130

Merged
merged 10 commits into from
Dec 30, 2024
Next Next commit
Fixed NPE when party creation doesn't use password. Solves bug report…
…ed here: https://discord.com/channels/526933440214597677/526938425161416727/1213131451235827753

Signed-off-by: Momshroom <Momshroom@gmail.com>
Momshroom committed Mar 2, 2024
commit 47506d404f85780a90ecadee9cfe8a5472ea09e3
1 change: 0 additions & 1 deletion src/main/java/com/gmail/nossr50/party/PartyManager.java
Original file line number Diff line number Diff line change
@@ -354,7 +354,6 @@ public void disbandParty(@Nullable McMMOPlayer mcMMOPlayer, @NotNull Party party
public void createParty(@NotNull McMMOPlayer mcMMOPlayer, @NotNull String partyName, @Nullable String password) {
requireNonNull(mcMMOPlayer, "mcMMOPlayer cannot be null!");
requireNonNull(partyName, "partyName cannot be null!");
requireNonNull(password, "password cannot be null!");

Player player = mcMMOPlayer.getPlayer();