[00:32:19] <Clippy> I goofed, forgive meeeee! ;____;

This commit is contained in:
gsand
2014-12-21 00:45:53 -06:00
parent 3038c837a9
commit 383a3d442d

View File

@@ -1,7 +1,7 @@
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: gsand <gsandowns@gmail.com>
Date: Sat, 20 Dec 2014 16:25:18 -0800
Subject: [PATCH] Configurable-initial-player-spawn-fuzziness
Date: Sat, 20 Dec 2014 22:30:59 -0800
Subject: [PATCH] Configurable initial player spawn fuzziness
diff --git a/src/main/java/net/minecraft/server/EntityPlayer.java b/src/main/java/net/minecraft/server/EntityPlayer.java
@@ -26,11 +26,10 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
Bukkit.getLogger().info( "Data value allowed items: " + StringUtils.join(dataValueAllowedItems, ", ") );
}
+
+ public int initialPlayerSpawnLocationRange;
+ private void initialPlayerSpawnLocationRange()
+ public static int initialPlayerSpawnLocationRange;
+ private static void initialPlayerSpawnLocationRange()
+ {
+ initialPlayerSpawnLocationRange = getInt( "player-spawning.initial-location-range", 5 );
+ log( "Max fuzziness for the initial player spawn " + initialPlayerSpawnLocationRange);
+ }
}
--