Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Signed-off-by: MattBDev <[email protected]>
  • Loading branch information
MattBDev committed Oct 10, 2016
1 parent 5978c9c commit a05fd2d
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,11 @@ public abstract class EventUtil {
public abstract void callMember(PlotPlayer initiator, Plot plot, UUID player, boolean added);

public void doJoinTask(final PlotPlayer player) {
if (player == null) {
return; //possible future warning message to figure out where we are retrieving null
}
if (ExpireManager.IMP != null) {
ExpireManager.IMP.handleJoin(player);
ExpireManager.IMP.handleJoin(player);
}
if (PS.get().worldedit != null) {
if (player.getAttribute("worldedit")) {
Expand Down

0 comments on commit a05fd2d

Please sign in to comment.