From c72f5218277bc57c67b267ff177d639590fe415a Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Mon, 14 Aug 2017 15:54:35 +1000 Subject: [PATCH] Increase max values in security tab in gui to 1 million --- MCGalaxy/Levels/LevelOptions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MCGalaxy/Levels/LevelOptions.cs b/MCGalaxy/Levels/LevelOptions.cs index 400efbfd9..5db6454f2 100644 --- a/MCGalaxy/Levels/LevelOptions.cs +++ b/MCGalaxy/Levels/LevelOptions.cs @@ -47,7 +47,7 @@ namespace MCGalaxy { { "LeafDecay", (p, l, value) => Toggle(p, l, ref l.Config.LeafDecay, "Leaf decay") }, { "RandomFlow", (p, l, value) => Toggle(p, l, ref l.Config.RandomFlow, "Random flow") }, { "GrowTrees", (p, l, value) => Toggle(p, l, ref l.Config.GrowTrees, "Tree growing") }, - { "Chat", (p, l, value) => Toggle(p, l, ref l.Config.ServerWideChat, "Roleplay (level only) chat: ", true) }, + { "Chat", (p, l, value) => Toggle(p, l, ref l.Config.ServerWideChat, "Roleplay (level only) chat", true) }, { "Guns", ToggleGuns }, { "Buildable", (p, l, value) => TogglePerms(p, l, ref l.Config.Buildable, "Buildable") }, { "Deletable", (p, l, value) => TogglePerms(p, l, ref l.Config.Deletable, "Deletable") },