Skip to content

Commit

Permalink
Hotfix max citizen config
Browse files Browse the repository at this point in the history
  • Loading branch information
someaddons committed Oct 12, 2024
1 parent e06dc4f commit 7f4e6ef
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ protected ServerConfiguration(final ForgeConfigSpec.Builder builder)
allowInfiniteSupplyChests = defineBoolean(builder, "allowinfinitesupplychests", false);
allowInfiniteColonies = defineBoolean(builder, "allowinfinitecolonies", false);
allowOtherDimColonies = defineBoolean(builder, "allowotherdimcolonies", true);
maxCitizenPerColony = defineInteger(builder, "maxcitizenpercolony", 250, 100, CitizenConstants.CITIZEN_LIMIT_MAX);
maxCitizenPerColony = defineInteger(builder, "maxcitizenpercolony", 250, 30, CitizenConstants.CITIZEN_LIMIT_MAX);
enableInDevelopmentFeatures = defineBoolean(builder, "enableindevelopmentfeatures", false);
alwaysRenderNameTag = defineBoolean(builder, "alwaysrendernametag", true);
workersAlwaysWorkInRain = defineBoolean(builder, "workersalwaysworkinrain", false);
Expand Down

0 comments on commit 7f4e6ef

Please sign in to comment.