fix beds exploding in new nether biomes

add end biomes too since beds explode there aswell & fix the stupid "(amount) entitiess removed." shit too
This commit is contained in:
speedxx
2020-07-28 16:24:41 -04:00
parent ee04a456a1
commit 106e457fa7
3 changed files with 34 additions and 29 deletions

View File

@ -64,7 +64,14 @@ public class Command_entitywipe extends FreedomCommand
{
count = plugin.ew.wipeEntities(bypassBlacklist);
}
msg(count + " " + (type != null ? entityName : "entities") + FUtil.showS(count) + " removed.");
if (count == 1)
{
msg(count + " " + (type != null ? entityName : "entity") + " removed.");
}
else
{
msg(count + " " + (type != null ? entityName : "entitie") + FUtil.showS(count) + " removed.");
}
return true;
}