3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-07 00:22:51 +02:00

Restore entity counter to //remove and grammatified //butcher similarly.

Dieser Commit ist enthalten in:
wizjany 2015-01-19 14:15:31 -05:00
Ursprung 372a520382
Commit d1631a9ca4

Datei anzeigen

@ -436,11 +436,7 @@ public class UtilityCommands {
killed += visitor.getAffected(); killed += visitor.getAffected();
} }
if (radius < 0) { actor.print("Killed " + killed + (killed != 1 ? " mobs" : "mob") + (radius < 0 ? "" : "in a radius of " + radius) + ".");
actor.print("Killed " + killed + " mobs.");
} else {
actor.print("Killed " + killed + " mobs in a radius of " + radius + ".");
}
if (editSession != null) { if (editSession != null) {
session.remember(editSession); session.remember(editSession);
@ -500,7 +496,7 @@ public class UtilityCommands {
removed += visitor.getAffected(); removed += visitor.getAffected();
} }
actor.print("Marked " + (removed != 1 ? "entities" : "entity") + " for removal."); actor.print("Marked " + removed + (removed != 1 ? " entities" : " entity") + " for removal.");
if (editSession != null) { if (editSession != null) {
session.remember(editSession); session.remember(editSession);