The notify, log, and tell actions will now trigger every time for the on-break, on-create, on-drop events.

This commit is contained in:
sk89q 2010-11-20 11:53:57 -08:00
parent cf7874f776
commit 0286900829

View File

@ -292,7 +292,7 @@ public void tell(String itemName) {
} }
}; };
return process(block.getType(), player, destroyActions, handler); return process(block.getType(), player, destroyActions, handler, false);
} }
/** /**
@ -329,7 +329,7 @@ public void tell(String itemName) {
} }
}; };
return process(block.getType(), player, breakActions, handler); return process(block.getType(), player, breakActions, handler, true);
} }
/** /**
@ -365,7 +365,7 @@ public void tell(String itemName) {
} }
}; };
return process(item, player, destroyWithActions, handler); return process(item, player, destroyWithActions, handler, false);
} }
/** /**
@ -401,7 +401,7 @@ public void tell(String itemName) {
} }
}; };
return process(item, player, createActions, handler); return process(item, player, createActions, handler, true);
} }
/** /**
@ -437,7 +437,7 @@ public void tell(String itemName) {
} }
}; };
return process(block.getType(), player, useActions, handler); return process(block.getType(), player, useActions, handler, false);
} }
/** /**
@ -465,7 +465,7 @@ public void tell(String itemName) {
} }
}; };
return process(block.getType(), player, useActions, handler); return process(block.getType(), player, useActions, handler, false);
} }
/** /**
@ -501,7 +501,7 @@ public void tell(String itemName) {
} }
}; };
return process(item, player, dropActions, handler); return process(item, player, dropActions, handler, true);
} }
/** /**
@ -510,9 +510,13 @@ public void tell(String itemName) {
* @param id * @param id
* @param player * @param player
* @param actions * @param actions
* @param handler
* @param allowRepeat
* @return * @return
*/ */
private boolean process(int id, Player player, String[] actions, ActionHandler handler) { private boolean process(int id, Player player, String[] actions,
ActionHandler handler, boolean allowRepeat) {
if (shouldIgnore(player)) { if (shouldIgnore(player)) {
return true; return true;
} }
@ -560,7 +564,7 @@ private boolean process(int id, Player player, String[] actions, ActionHandler h
handler.ban(etc.getDataSource().getItem(id)); handler.ban(etc.getDataSource().getItem(id));
} }
} else if (!repeating) { } else if (!repeating || allowRepeat) {
// Notify // Notify
if (action.equalsIgnoreCase("notify")) { if (action.equalsIgnoreCase("notify")) {
handler.notifyAdmins(etc.getDataSource().getItem(id)); handler.notifyAdmins(etc.getDataSource().getItem(id));
@ -570,7 +574,7 @@ private boolean process(int id, Player player, String[] actions, ActionHandler h
handler.log(etc.getDataSource().getItem(id)); handler.log(etc.getDataSource().getItem(id));
// Tell // Tell
} else if (!repeating && action.equalsIgnoreCase("tell")) { } else if (action.equalsIgnoreCase("tell")) {
if (this.message != null) { if (this.message != null) {
player.sendMessage(Colors.Yellow + player.sendMessage(Colors.Yellow +
String.format(message, etc.getDataSource().getItem(id)) String.format(message, etc.getDataSource().getItem(id))