mirror of
https://github.com/kaboomserver/extras.git
synced 2025-02-25 05:33:51 -05:00
Change server port
This commit is contained in:
parent
fdfe46d9bf
commit
04227caa4f
4 changed files with 16 additions and 2 deletions
|
@ -349,7 +349,15 @@ class EntitySpawn implements Listener {
|
||||||
event.getEntity().getItemStack().getItemMeta();
|
event.getEntity().getItemStack().getItemMeta();
|
||||||
} catch (Exception | StackOverflowError exception) {
|
} catch (Exception | StackOverflowError exception) {
|
||||||
event.setCancelled(true);
|
event.setCancelled(true);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*PotionMeta potion = (PotionMeta) event.getEntity().getItemStack().getItemMeta();
|
||||||
|
System.out.println(potion.getColor().asRGB());
|
||||||
|
if (potion.getColor().asRGB() < 0) {
|
||||||
|
event.setCancelled(true);
|
||||||
|
}*/
|
||||||
}
|
}
|
||||||
|
|
||||||
@EventHandler
|
@EventHandler
|
||||||
|
|
|
@ -81,6 +81,9 @@ class PlayerCommand implements Listener {
|
||||||
Double.parseDouble(arr[2]) > 100) {
|
Double.parseDouble(arr[2]) > 100) {
|
||||||
event.setMessage(command.replaceFirst(arr[2], "100"));
|
event.setMessage(command.replaceFirst(arr[2], "100"));
|
||||||
}
|
}
|
||||||
|
} else if ("/minecraft:give".equalsIgnoreCase(arr[0]) ||
|
||||||
|
"/give".equalsIgnoreCase(arr[0])) {
|
||||||
|
event.setMessage(command.replace("Color:-", "Color:"));
|
||||||
} else if (("/minecraft:particle".equalsIgnoreCase(arr[0]) ||
|
} else if (("/minecraft:particle".equalsIgnoreCase(arr[0]) ||
|
||||||
"/particle".equalsIgnoreCase(arr[0])) &&
|
"/particle".equalsIgnoreCase(arr[0])) &&
|
||||||
arr.length >= 10) {
|
arr.length >= 10) {
|
||||||
|
|
|
@ -104,7 +104,7 @@ class PlayerConnection implements Listener {
|
||||||
@EventHandler
|
@EventHandler
|
||||||
void onPlayerLogin(PlayerLoginEvent event) {
|
void onPlayerLogin(PlayerLoginEvent event) {
|
||||||
if (event.getHostname().startsWith("play.flame.ga") &&
|
if (event.getHostname().startsWith("play.flame.ga") &&
|
||||||
event.getHostname().endsWith(":53950")) {
|
event.getHostname().endsWith(":25565")) {
|
||||||
event.disallow(Result.KICK_OTHER, "You connected to the server using an outdated server address/IP.\nPlease use the following address/IP:\n\nkaboom.pw");
|
event.disallow(Result.KICK_OTHER, "You connected to the server using an outdated server address/IP.\nPlease use the following address/IP:\n\nkaboom.pw");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
@ -83,6 +83,9 @@ class ServerCommand implements Listener {
|
||||||
Double.parseDouble(arr[2]) > 100) {
|
Double.parseDouble(arr[2]) > 100) {
|
||||||
event.setCommand(command.replaceFirst(arr[2], "100"));
|
event.setCommand(command.replaceFirst(arr[2], "100"));
|
||||||
}
|
}
|
||||||
|
} else if ("minecraft:give".equalsIgnoreCase(arr[0]) ||
|
||||||
|
"give".equalsIgnoreCase(arr[0])) {
|
||||||
|
event.setCommand(command.replace("Color:-", "Color:"));
|
||||||
} else if (("minecraft:particle".equalsIgnoreCase(arr[0]) ||
|
} else if (("minecraft:particle".equalsIgnoreCase(arr[0]) ||
|
||||||
"particle".equalsIgnoreCase(arr[0])) &&
|
"particle".equalsIgnoreCase(arr[0])) &&
|
||||||
arr.length >= 10) {
|
arr.length >= 10) {
|
||||||
|
|
Loading…
Reference in a new issue