]> git.lizzy.rs Git - BoundingBoxOutlineReloaded.git/blobdiff - src/main/java/com/irtimaled/bbor/common/events/WorldLoaded.java
Upgrade to 1.14.2
[BoundingBoxOutlineReloaded.git] / src / main / java / com / irtimaled / bbor / common / events / WorldLoaded.java
index 12596b341a94d0a169eefd2c3dd83fd050bce7f7..33f44e98fb493dcb5b495befc6f8687b3bdde670 100644 (file)
@@ -1,6 +1,6 @@
 package com.irtimaled.bbor.common.events;
 
-import net.minecraft.world.WorldServer;
+import net.minecraft.world.ServerWorld;
 import net.minecraft.world.storage.WorldInfo;
 
 public class WorldLoaded {
@@ -9,7 +9,7 @@ public class WorldLoaded {
     private final int spawnX;
     private final int spawnZ;
 
-    public WorldLoaded(WorldServer world) {
+    public WorldLoaded(ServerWorld world) {
         WorldInfo info = world.getWorldInfo();
         this.dimensionId = world.getDimension().getType().getId();
         this.seed = info.getSeed();