Fix translation error in gc

git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1465 e251c2fe-e539-e718-e476-b85c1f46cddb
This commit is contained in:
snowleo 2011-05-14 17:27:49 +00:00
parent 85eb7c6ec4
commit abb1c159c1

View File

@ -24,7 +24,7 @@ public class Commandgc extends EssentialsCommand
sender.sendMessage(
(w.getEnvironment() == World.Environment.NETHER ? "Nether" : "World") + " \"" + w.getName() + "\": "
+ w.getLoadedChunks().length + Util.i18n("gcchunks")
+ w.getEntities().size() + Util.i18n("entities"));
+ w.getEntities().size() + Util.i18n("gcentities"));
}
}
}