mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
cab333b217
Don't send requests of every player was found in the global api cache SpigotMC/Spigot@841270ff1e Correctly set the response code for the cached lookups and return the ... SpigotMC/Spigot@f170b7899c Don't try and re-set the global api cache on reload SpigotMC/Spigot@b410a00a66 Use a compile time sneaky throw hack. SpigotMC/Spigot@508462b96b Fix a missed rename in WorldGenGroundBush SpigotMC/Spigot@0614d8fae9
66 lines
2.5 KiB
Diff
66 lines
2.5 KiB
Diff
From b78526dd306aa75104b289713e38e6830b07689a Mon Sep 17 00:00:00 2001
|
|
From: Aikar <aikar@aikar.co>
|
|
Date: Sun, 24 Feb 2013 20:45:20 +1100
|
|
Subject: [PATCH] Enable Improved Ping Sending
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityPlayer.java b/src/main/java/net/minecraft/server/EntityPlayer.java
|
|
index a48a1c0..413af68 100644
|
|
--- a/src/main/java/net/minecraft/server/EntityPlayer.java
|
|
+++ b/src/main/java/net/minecraft/server/EntityPlayer.java
|
|
@@ -62,6 +62,7 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
|
|
public boolean keepLevel = false;
|
|
public double maxHealthCache;
|
|
public boolean joining = true;
|
|
+ public int lastPing = -1; // Spigot
|
|
// CraftBukkit end
|
|
// Spigot start
|
|
public boolean collidesWithEntities = true;
|
|
diff --git a/src/main/java/net/minecraft/server/PlayerList.java b/src/main/java/net/minecraft/server/PlayerList.java
|
|
index 01a6d66..e2d3ccd 100644
|
|
--- a/src/main/java/net/minecraft/server/PlayerList.java
|
|
+++ b/src/main/java/net/minecraft/server/PlayerList.java
|
|
@@ -793,6 +793,8 @@ public abstract class PlayerList {
|
|
// CraftBukkit end
|
|
}
|
|
|
|
+ private int currentPing = 0;
|
|
+
|
|
public void tick() {
|
|
if (++this.t > 600) {
|
|
this.t = 0;
|
|
@@ -805,6 +807,30 @@ public abstract class PlayerList {
|
|
this.sendAll(new PacketPlayOutPlayerInfo(entityplayer.getName(), true, entityplayer.ping));
|
|
}
|
|
// CraftBukkit end */
|
|
+ // Spigot start
|
|
+ try
|
|
+ {
|
|
+ if ( !players.isEmpty() )
|
|
+ {
|
|
+ currentPing = ( currentPing + 1 ) % this.players.size();
|
|
+ EntityPlayer player = (EntityPlayer) this.players.get( currentPing );
|
|
+ if ( player.lastPing == -1 || Math.abs( player.ping - player.lastPing ) > 20 )
|
|
+ {
|
|
+ Packet packet = new PacketPlayOutPlayerInfo( player.listName, true, player.ping );
|
|
+ for ( EntityPlayer splayer : (List<EntityPlayer>) this.players )
|
|
+ {
|
|
+ if ( splayer.getBukkitEntity().canSee( player.getBukkitEntity() ) )
|
|
+ {
|
|
+ splayer.playerConnection.sendPacket( packet );
|
|
+ }
|
|
+ }
|
|
+ player.lastPing = player.ping;
|
|
+ }
|
|
+ }
|
|
+ } catch ( Exception e ) {
|
|
+ // Better safe than sorry :)
|
|
+ }
|
|
+ // Spigot end
|
|
}
|
|
|
|
public void sendAll(Packet packet) {
|
|
--
|
|
1.9.1
|
|
|