Skip to content

Commit 0334e72

Browse files
committed
Relying only on javascript to load defaults for match settings.
1 parent 297b0cb commit 0334e72

2 files changed

Lines changed: 1 addition & 4 deletions

File tree

rlbot_gui/gui.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -135,9 +135,6 @@ def validate_bots(bots):
135135
def get_match_settings():
136136
settings = load_settings()
137137
match_settings = settings.value(MATCH_SETTINGS_KEY, type=dict)
138-
if 'enable_state_setting' not in match_settings:
139-
# Set this to true by default for backwards compatiblity with state setting sandbox, snek, and sniper
140-
match_settings['enable_state_setting'] = True
141138
return match_settings if match_settings else None
142139

143140

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import setuptools
22

3-
__version__ = '0.0.57'
3+
__version__ = '0.0.58'
44

55
with open("README.md", "r") as readme_file:
66
long_description = readme_file.read()

0 commit comments

Comments
 (0)