13
0
geforkt von Mirrors/Paper

Added the ability to retrieve a world's Seed.

By: Rigby <rigby@onarandombox.com>
Dieser Commit ist enthalten in:
CraftBukkit/Spigot 2011-04-23 17:57:25 +01:00
Ursprung e5a4f1c9cc
Commit 18394a8207

Datei anzeigen

@ -594,4 +594,8 @@ public class CraftWorld implements World {
public void setThunderDuration(int duration) {
world.worldData.b(duration);
}
public long getSeed() {
return world.worldData.b();
}
}