2015-07-23 22:43:27 +02:00
|
|
|
From 666400319370efe36fb4f5fb4c67e745e264b044 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-07-23 22:43:27 +02:00
|
|
|
index 1fca956..88f469d 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
|
2015-07-23 22:43:27 +02:00
|
|
|
@@ -1214,6 +1214,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
|
2015-05-09 22:23:26 +02:00
|
|
|
+ if ( entity == player && !player.isSpectator() )
|
2014-07-21 22:46:54 +02:00
|
|
|
+ {
|
|
|
|
+ disconnect( "Cannot interact with self!" );
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ // Spigot End
|
|
|
|
|
2015-05-09 22:23:26 +02:00
|
|
|
this.player.resetIdleTimer();
|
2014-07-21 22:46:54 +02:00
|
|
|
if (entity != null) {
|
|
|
|
--
|
2015-05-09 22:23:26 +02:00
|
|
|
2.1.4
|
2014-07-21 22:46:54 +02:00
|
|
|
|