mirror of
https://github.com/PlayPro/CoreProtect.git
synced 2024-11-24 12:16:36 +01:00
Fixed fire/water displaying in inventory lookups
This commit is contained in:
parent
2a8e4f9797
commit
c95bf3cc30
@ -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,7 +1433,9 @@ public class Rollback extends Queue {
|
||||
targetType = Selector.SECOND;
|
||||
}
|
||||
|
||||
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 (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) {
|
||||
|
Loading…
Reference in New Issue
Block a user