Skip to content

Commit

Permalink
The third in a series of one-line party fixes
Browse files Browse the repository at this point in the history
Good news, the other two were technically correct. This was just an unrelated copy/paste error. Yay.
  • Loading branch information
ezeiger92 committed Mar 11, 2018
1 parent e6b3013 commit 6c41549
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>me.mrcookieslime</groupId>
<artifactId>QuestWorld</artifactId>
<version>2.6.12</version>
<version>2.6.13</version>
<build>
<resources>
<resource>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ else if(s instanceof ICategory) {

Player player = PlayerTools.getPlayer(name);
if (player != null) {
if (QuestWorld.getParty(p) == null) {
if (QuestWorld.getParty(player) == null) {
PlayerTools.sendTranslation(p2, true, Translation.PARTY_LEADER_INVITED, name);
party.invitePlayer(player);
openPartyMenu(p);
Expand Down

0 comments on commit 6c41549

Please sign in to comment.