Use party if a player has it.

This commit is contained in:
TadahTech 2016-09-01 08:47:43 -05:00
parent 6f3d7dcd29
commit a6360249b7

View File

@ -19,6 +19,6 @@ public class CancelNextGameCommand extends CommandBase<ArcadeManager>
@Override
public void Execute(Player caller, String[] args)
{
Plugin.getNextBestGameManager().cancel(caller, null);
Plugin.getNextBestGameManager().cancel(caller, Plugin.getPartyManager().getParty(caller));
}
}