1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-14 18:44:48 +02:00

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 20455ab3c0
commit 880ec1b3d9

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"));
}
}
}