Implements World.save and Server.savePlayers()

This commit is contained in:
Morgan Humes
2011-02-25 21:29:42 -05:00
committed by Erik Broes
parent 1505b4bf3c
commit 9a264ed666
3 changed files with 14 additions and 2 deletions

View File

@@ -262,7 +262,7 @@ public final class CraftServer implements Server {
}
}
}
return new CraftWorld(internal);
}
@@ -297,4 +297,8 @@ public final class CraftServer implements Server {
return null;
}
}
public void savePlayers() {
server.d();
}
}