party: spelling generatePassphrase

This commit is contained in:
LlemonDuck
2022-06-17 13:57:30 -04:00
committed by Adam
parent e3800badfb
commit 2e12c707c2
2 changed files with 2 additions and 2 deletions

View File

@@ -90,7 +90,7 @@ public class PartyService
eventBus.register(this); eventBus.register(this);
} }
public String generatePasspharse() public String generatePassphrase()
{ {
assert client.isClientThread(); assert client.isClientThread();

View File

@@ -144,7 +144,7 @@ class PartyPanel extends PluginPanel
else else
{ {
// Create party // Create party
clientThread.invokeLater(() -> party.changeParty(party.generatePasspharse())); clientThread.invokeLater(() -> party.changeParty(party.generatePassphrase()));
} }
}); });