added debug
This commit is contained in:
parent
c5d2772eae
commit
76bef40b0b
1 changed files with 13 additions and 7 deletions
|
@ -24,14 +24,20 @@ public class PlotChangeListener implements Listener{
|
||||||
}
|
}
|
||||||
@EventHandler
|
@EventHandler
|
||||||
public void onPlayerPlotChange(PlayerChangePlotEvent plotEvent){
|
public void onPlayerPlotChange(PlayerChangePlotEvent plotEvent){
|
||||||
if (dickmode == false)
|
|
||||||
return;
|
|
||||||
if (plotEvent.getPlayer().getGameMode() != GameMode.CREATIVE)
|
|
||||||
return;
|
|
||||||
if (!(cbCreatives.contains(plotEvent.getPlayer())))
|
|
||||||
return;
|
|
||||||
|
|
||||||
Player player = plotEvent.getPlayer();
|
Player player = plotEvent.getPlayer();
|
||||||
|
if (dickmode == false){
|
||||||
|
debug(player, "dickies");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (plotEvent.getPlayer().getGameMode() != GameMode.CREATIVE){
|
||||||
|
debug(player, "cray cray");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!(cbCreatives.contains(plotEvent.getPlayer()))){
|
||||||
|
debug(player, "racism");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
Resident currentResident = new Resident(player.getName());
|
Resident currentResident = new Resident(player.getName());
|
||||||
Town town;
|
Town town;
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in a new issue