Add toggle to disable event information on player join

This commit is contained in:
nossr50
2019-05-16 11:40:47 -07:00
parent c8a32b8b38
commit 734dfcdec5
4 changed files with 4 additions and 1 deletions

View File

@ -569,4 +569,5 @@ public class Config extends AutoUpdateConfigLoader {
//public float getMasterVolume() { return (float) config.getDouble("Sounds.MasterVolume", 1.0); }
public boolean broadcastEventMessages() { return config.getBoolean("General.EventBroadcasts", true);}
public boolean playerJoinEventInfo() { return config.getBoolean("General.EventInfoOnPlayerJoin", true);}
}