From 95beaf55efe7f65ac6416f4fe08bd4f2f47f080e Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Sun, 21 Apr 2024 14:27:03 -0400 Subject: Expand sphere 1 in door shuffle + no ECH --- util/generate_gamedata.rb | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'util') diff --git a/util/generate_gamedata.rb b/util/generate_gamedata.rb index f63e062..3f610b1 100644 --- a/util/generate_gamedata.rb +++ b/util/generate_gamedata.rb @@ -8,6 +8,7 @@ outputpath = ARGV[2] CLASSIFICATION_NORMAL = 1 CLASSIFICATION_REDUCED = 2 CLASSIFICATION_INSANITY = 4 +CLASSIFICATION_SMALL_SPHERE_ONE = 8 panel_to_id = {} door_groups = {} @@ -80,6 +81,10 @@ config.each do |room_name, room_data| classification_by_location_id[location_id] += CLASSIFICATION_REDUCED end end + + if room_name == "Starting Room" + classification_by_location_id[location_id] += CLASSIFICATION_SMALL_SPHERE_ONE + end end end -- cgit 1.4.1