Fixed fire/water displaying in inventory lookups
This commit is contained in:
parent
2a8e4f9797
commit
c95bf3cc30
3 changed files with 18 additions and 2 deletions
|
|
@ -263,6 +263,8 @@ public class LookupCommand {
|
|||
}
|
||||
|
||||
if (argAction.contains(4) && argAction.contains(11)) { // a:inventory
|
||||
argExclude.add(Material.FIRE);
|
||||
argExclude.add(Material.WATER);
|
||||
argExcludeUsers.add("#hopper");
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -183,6 +183,12 @@ public class RollbackRestoreCommand {
|
|||
Chat.sendMessage(player, Color.DARK_AQUA + "CoreProtect " + Color.WHITE + "- " + Phrase.build(Phrase.MISSING_ACTION_USER));
|
||||
return;
|
||||
}
|
||||
if (!argExclude.contains(Material.FIRE)) {
|
||||
argExclude.add(Material.FIRE);
|
||||
}
|
||||
if (!argExclude.contains(Material.WATER)) {
|
||||
argExclude.add(Material.WATER);
|
||||
}
|
||||
if (!argExcludeUsers.contains("#hopper")) {
|
||||
argExcludeUsers.add("#hopper");
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1394,8 +1394,14 @@ public class Rollback extends Queue {
|
|||
|
||||
int excludeCount = 0;
|
||||
for (Object excludeTarget : excludeList) {
|
||||
String targetName = "";
|
||||
// don't display that excluded water/fire in inventory rollbacks
|
||||
if (actionList.contains(4) && actionList.contains(11)) {
|
||||
if (excludeTarget.equals(Material.FIRE) || excludeTarget.equals(Material.WATER)) {
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
String targetName = "";
|
||||
if (excludeTarget instanceof Material) {
|
||||
targetName = ((Material) excludeTarget).name().toLowerCase(Locale.ROOT);
|
||||
item = (!item ? !(((Material) excludeTarget).isBlock()) : item);
|
||||
|
|
@ -1427,8 +1433,10 @@ public class Rollback extends Queue {
|
|||
targetType = Selector.SECOND;
|
||||
}
|
||||
|
||||
if (excludeCount > 0) {
|
||||
Chat.sendMessage(user, Color.DARK_AQUA + "CoreProtect " + Color.WHITE + "- " + Phrase.build(Phrase.ROLLBACK_INCLUDE, excludeTargets.toString(), Selector.SECOND, targetType, (excludeCount == 1 ? Selector.FIRST : Selector.SECOND))); // exclude
|
||||
}
|
||||
}
|
||||
|
||||
if (excludeUserList.size() > 0) {
|
||||
StringBuilder excludeUsers = new StringBuilder();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue