Removed uneeded variables.

This commit is contained in:
2026-06-05 12:11:05 +02:00
parent 9a1c18f815
commit cbc961b7c4

View File

@@ -91,13 +91,10 @@ def creator_page():
no_new_ai = ui.checkbox("Disable Becoming AI Controlled") no_new_ai = ui.checkbox("Disable Becoming AI Controlled")
vwrap = ui.checkbox("North South Wrapping") vwrap = ui.checkbox("North South Wrapping")
hwrap = ui.checkbox("East West Wrapping") hwrap = ui.checkbox("East West Wrapping")
description_container = ui.row() with ui.row():
toggle_container = ui.row()
# TODO: Are these containers still needed?
with toggle_container:
event_rarity = ui.toggle({1: "Common", 2: "Rare"}, value=1) event_rarity = ui.toggle({1: "Common", 2: "Rare"}, value=1)
random_map = ui.toggle([10, 15, 20], value=15) random_map = ui.toggle([10, 15, 20], value=15)
with description_container: with ui.row():
ui.label("Event Rarity") ui.label("Event Rarity")
# TODO: Fix Padding # TODO: Fix Padding
ui.label("Provinces per player:") ui.label("Provinces per player:")