mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-01 05:47:45 +01:00
Disallow Interaction With Self
By: md_5 <md_5@live.com.au>
This commit is contained in:
parent
040b01fb66
commit
8bcdc3d516
@ -0,0 +1,27 @@
|
|||||||
|
From fc86566c7e87d5294d6199d7bd46e0333b21e9dc Mon Sep 17 00:00:00 2001
|
||||||
|
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
|
||||||
|
index 0e8d292..96076ae 100644
|
||||||
|
--- a/src/main/java/net/minecraft/server/PlayerConnection.java
|
||||||
|
+++ b/src/main/java/net/minecraft/server/PlayerConnection.java
|
||||||
|
@@ -1082,6 +1082,13 @@ public class PlayerConnection extends Connection {
|
||||||
|
|
||||||
|
WorldServer worldserver = this.minecraftServer.getWorldServer(this.player.dimension);
|
||||||
|
Entity entity = worldserver.getEntity(packet7useentity.target);
|
||||||
|
+ // Spigot Start
|
||||||
|
+ if ( entity == player )
|
||||||
|
+ {
|
||||||
|
+ disconnect( "Cannot interact with self!" );
|
||||||
|
+ return;
|
||||||
|
+ }
|
||||||
|
+ // Spigot End
|
||||||
|
|
||||||
|
if (entity != null) {
|
||||||
|
boolean flag = this.player.n(entity);
|
||||||
|
--
|
||||||
|
1.8.1.2
|
||||||
|
|
Loading…
Reference in New Issue
Block a user