One single missing char that kept breaking everything.

It took me half an hour to find this -.-
RAGE!
This commit is contained in:
main() 2012-01-07 17:13:00 +01:00
parent 814725a2ba
commit e2d6652ef1

View File

@ -124,7 +124,7 @@ public class MockWorldFactory {
// we have to invert the order!
ArrayList<World> myList = new ArrayList<World>(createdWorlds.values());
List<World> retList = new ArrayList<World>();
for (int i = (myList.size() - 1); i > 0; i--) {
for (int i = (myList.size() - 1); i >= 0; i--) {
retList.add(myList.get(i));
}
return retList;