Doubled server object buffer size

This commit is contained in:
Anuken
2023-04-07 10:43:59 -04:00
parent 04eba618d2
commit 60fc2fb5cd
2 changed files with 3 additions and 3 deletions

View File

@@ -261,12 +261,12 @@ public class CustomRulesDialog extends BaseDialog{
t.button("@rules.anyenv", style, () -> {
if(!rules.infiniteResources){
//unlocalized for now
ui.showInfo("[accent]'Any' environment, or 'mixed tech', is no longer allowed outside of sandbox.[]\n\nReasoning: Serpulo and Erekir tech were never meant to be used in the same map. They are not compatible or remotely balanced.\nI have received far too many complains in this regard.");
ui.showInfo("The 'any' environment can only be used in sandbox mode.");
}else{
rules.env = Vars.defaultEnv;
rules.hiddenBuildItems.clear();
}
}).group(group).checked(b -> rules.hiddenBuildItems.size == 0);
}).group(group).checked(b -> rules.hiddenBuildItems.size == 0).update(b -> b.getLabel().setColor(!rules.infiniteResources ? Color.gray : Color.white));
}).left().fill(false).expand(false, false).row();
title("@rules.title.teams");