2016-03-25 05:59:37 +01:00
|
|
|
From df94d296af159e68e0b487c19c5b75fb19a9a605 Mon Sep 17 00:00:00 2001
|
2015-12-23 05:06:19 +01:00
|
|
|
From: Steve Anton <anxuiz.nx@gmail.com>
|
2016-03-01 00:09:49 +01:00
|
|
|
Date: Thu, 3 Mar 2016 00:09:38 -0600
|
2015-12-23 05:06:19 +01:00
|
|
|
Subject: [PATCH] Add PlayerInitialSpawnEvent
|
|
|
|
|
|
|
|
For modifying a player's initial spawn location as they join the server
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/PlayerList.java b/src/main/java/net/minecraft/server/PlayerList.java
|
2016-03-25 05:59:37 +01:00
|
|
|
index ef76652..60b02f1 100644
|
2015-12-23 05:06:19 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/PlayerList.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/PlayerList.java
|
2015-12-29 03:15:28 +01:00
|
|
|
@@ -99,6 +99,22 @@ public abstract class PlayerList {
|
2015-12-23 05:06:19 +01:00
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
|
2016-03-01 00:09:49 +01:00
|
|
|
+ // Paper start - support PlayerInitialSpawnEvent
|
2015-12-23 05:06:19 +01:00
|
|
|
+ Location originalLoc = new Location(entityplayer.world.getWorld(), entityplayer.locX, entityplayer.locY, entityplayer.locZ, entityplayer.yaw, entityplayer.pitch);
|
2016-03-01 00:09:49 +01:00
|
|
|
+ com.destroystokyo.paper.event.player.PlayerInitialSpawnEvent event = new com.destroystokyo.paper.event.player.PlayerInitialSpawnEvent(entityplayer.getBukkitEntity(), originalLoc);
|
2015-12-23 05:06:19 +01:00
|
|
|
+ this.server.server.getPluginManager().callEvent(event);
|
|
|
|
+
|
|
|
|
+ Location newLoc = event.getSpawnLocation();
|
|
|
|
+ entityplayer.world = ((CraftWorld) newLoc.getWorld()).getHandle();
|
|
|
|
+ entityplayer.locX = newLoc.getX();
|
|
|
|
+ entityplayer.locY = newLoc.getY();
|
|
|
|
+ entityplayer.locZ = newLoc.getZ();
|
|
|
|
+ entityplayer.yaw = newLoc.getYaw();
|
|
|
|
+ entityplayer.pitch = newLoc.getPitch();
|
|
|
|
+ entityplayer.dimension = ((CraftWorld) newLoc.getWorld()).getHandle().dimension;
|
|
|
|
+ entityplayer.spawnWorld = entityplayer.world.worldData.getName();
|
2016-03-01 00:09:49 +01:00
|
|
|
+ // Paper end
|
2015-12-23 05:06:19 +01:00
|
|
|
+
|
|
|
|
entityplayer.spawnIn(this.server.getWorldServer(entityplayer.dimension));
|
|
|
|
entityplayer.playerInteractManager.a((WorldServer) entityplayer.world);
|
|
|
|
String s1 = "local";
|
|
|
|
--
|
2016-03-25 05:59:37 +01:00
|
|
|
2.7.1.windows.2
|
2015-12-23 05:06:19 +01:00
|
|
|
|