about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2025-05-17 13:14:05 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2025-05-17 13:14:05 -0400
commit215e47b99d9d2bbe003286c7b78c21ad65b27794 (patch)
tree014d0891c5f4b0e301be679f6b33622a6841d5ff
parent504d1dac2e500714233bbf19b0a735d2960b56e6 (diff)
downloadlingo-archipelago-215e47b99d9d2bbe003286c7b78c21ad65b27794.tar.gz
lingo-archipelago-215e47b99d9d2bbe003286c7b78c21ad65b27794.tar.bz2
lingo-archipelago-215e47b99d9d2bbe003286c7b78c21ad65b27794.zip
Fix for editor's sake
-rw-r--r--Archipelago/client.gd4
1 files changed, 2 insertions, 2 deletions
diff --git a/Archipelago/client.gd b/Archipelago/client.gd index 2c60f7c..2e03717 100644 --- a/Archipelago/client.gd +++ b/Archipelago/client.gd
@@ -908,8 +908,8 @@ func processItem(item, index, from, flags):
908 item_name += " (%s)" % prognames[item_name][_progressive_progress[int(item)]] 908 item_name += " (%s)" % prognames[item_name][_progressive_progress[int(item)]]
909 _progressive_progress[int(item)] += 1 909 _progressive_progress[int(item)] += 1
910 910
911 if _color_shuffle and color_items.has(_item_id_to_name["Lingo"][item]): 911 if _color_shuffle and color_items.has(_item_id_to_name["Lingo"][float(item)]):
912 var lcol = _item_id_to_name["Lingo"][item].to_lower() 912 var lcol = _item_id_to_name["Lingo"][float(item)].to_lower()
913 if not _has_colors.has(lcol): 913 if not _has_colors.has(lcol):
914 _has_colors.append(lcol) 914 _has_colors.append(lcol)
915 emit_signal("evaluate_solvability") 915 emit_signal("evaluate_solvability")