From 6e28bf73a4c4ae5d6bd55172b415acab5a78076d Mon Sep 17 00:00:00 2001 From: 502647092 Date: Tue, 19 Jul 2016 09:31:36 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BF=AE=E5=A4=8D=E4=B8=8A=E4=B8=AA?= =?UTF-8?q?=E7=89=88=E6=9C=AC=E7=9A=84=E7=A9=BA=E6=8C=87=E9=92=88=E9=94=99?= =?UTF-8?q?=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 502647092 --- src/main/java/pw/yumc/TeleportRandom/TeleportRandom.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/pw/yumc/TeleportRandom/TeleportRandom.java b/src/main/java/pw/yumc/TeleportRandom/TeleportRandom.java index a713036..a7e913b 100644 --- a/src/main/java/pw/yumc/TeleportRandom/TeleportRandom.java +++ b/src/main/java/pw/yumc/TeleportRandom/TeleportRandom.java @@ -129,6 +129,7 @@ public class TeleportRandom extends JavaPlugin implements CommandExecutor { public Point(final int limit, final World world) { this.limit = limit; + this.world = world; x = rr.nextInt(limit); z = rr.nextInt(limit); final int xf = rr.nextInt(x);