Disable reactor explosions on servers by default

This commit is contained in:
Anuken 2019-11-16 16:35:11 -05:00
parent eba0a96b6d
commit a90f2545d9
2 changed files with 2 additions and 2 deletions

View File

@ -67,7 +67,7 @@ public class Rules{
public boolean attackMode = false;
/** Whether this is the editor gamemode. */
public boolean editor = false;
/** Whether the tutorial is enabled. False by default.*/
/** Whether the tutorial is enabled. False by default. */
public boolean tutorial = false;
/** Starting items put in cores */
public Array<ItemStack> loadout = Array.with(ItemStack.with(Items.copper, 100));

View File

@ -62,7 +62,7 @@ public class ServerControl implements ApplicationListener{
"port", port,
"logging", true,
"socket", false,
"globalrules", "{}"
"globalrules", "{reactorExplosions: false}"
);
Log.setLogger(new LogHandler(){