mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-03 09:19:38 +01:00
fe18b38aea
I misread the code and thought the code kept looping until the mob spawn cap was hit. Upon furthur review, this is not true, so this patch doesn't do anything sane.
24 lines
1.0 KiB
Diff
24 lines
1.0 KiB
Diff
From b068d063f98eb23fa58eda1e26f9874ba159a304 Mon Sep 17 00:00:00 2001
|
|
From: Aikar <aikar@aikar.co>
|
|
Date: Sat, 16 Apr 2016 00:39:33 -0400
|
|
Subject: [PATCH] Configurable RCON IP address
|
|
|
|
For servers with multiple IP's, ability to bind to a specific interface.
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/RemoteControlListener.java b/src/main/java/net/minecraft/server/RemoteControlListener.java
|
|
index 8309a99..3a6561a 100644
|
|
--- a/src/main/java/net/minecraft/server/RemoteControlListener.java
|
|
+++ b/src/main/java/net/minecraft/server/RemoteControlListener.java
|
|
@@ -24,7 +24,7 @@ public class RemoteControlListener extends RemoteConnectionThread {
|
|
super(iminecraftserver, "RCON Listener");
|
|
this.h = iminecraftserver.a("rcon.port", 0);
|
|
this.l = iminecraftserver.a("rcon.password", "");
|
|
- this.j = iminecraftserver.d_();
|
|
+ this.j = iminecraftserver.a("rcon.ip", iminecraftserver.d_()); // Paper
|
|
this.i = iminecraftserver.e_();
|
|
if (0 == this.h) {
|
|
this.h = this.i + 10;
|
|
--
|
|
2.7.4 (Apple Git-66)
|
|
|