2015-01-05 04:32:01 +01:00
|
|
|
From cd3eee8a0d7c034b59ff3f9a008a8048c3d86382 Mon Sep 17 00:00:00 2001
|
2014-07-21 22:46:54 +02:00
|
|
|
From: md_5 <md_5@live.com.au>
|
|
|
|
Date: Fri, 28 Jun 2013 19:52:54 +1000
|
|
|
|
Subject: [PATCH] Disallow Interaction With Self
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/PlayerConnection.java b/src/main/java/net/minecraft/server/PlayerConnection.java
|
2015-01-05 04:32:01 +01:00
|
|
|
index 77e04a1..bd92555 100644
|
2014-07-21 22:46:54 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/PlayerConnection.java
|
2014-12-10 02:58:37 +01:00
|
|
|
@@ -1179,6 +1179,13 @@ public class PlayerConnection implements PacketListenerPlayIn, IUpdatePlayerList
|
2014-11-28 02:17:45 +01:00
|
|
|
PlayerConnectionUtils.ensureMainThread(packetplayinuseentity, this, this.player.u());
|
2014-07-21 22:46:54 +02:00
|
|
|
WorldServer worldserver = this.minecraftServer.getWorldServer(this.player.dimension);
|
|
|
|
Entity entity = packetplayinuseentity.a((World) worldserver);
|
|
|
|
+ // Spigot Start
|
2014-11-28 02:17:45 +01:00
|
|
|
+ if ( entity == player && !player.v() ) // RENAME
|
2014-07-21 22:46:54 +02:00
|
|
|
+ {
|
|
|
|
+ disconnect( "Cannot interact with self!" );
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ // Spigot End
|
|
|
|
|
2014-11-28 02:17:45 +01:00
|
|
|
this.player.z();
|
2014-07-21 22:46:54 +02:00
|
|
|
if (entity != null) {
|
|
|
|
--
|
2014-11-28 02:17:45 +01:00
|
|
|
2.1.0
|
2014-07-21 22:46:54 +02:00
|
|
|
|