about summary refs log tree commit diff stats
path: root/Archipelago
diff options
context:
space:
mode:
Diffstat (limited to 'Archipelago')
-rw-r--r--Archipelago/client.gd2
1 files changed, 1 insertions, 1 deletions
diff --git a/Archipelago/client.gd b/Archipelago/client.gd index 335871e..78ac845 100644 --- a/Archipelago/client.gd +++ b/Archipelago/client.gd
@@ -321,7 +321,7 @@ func processItem(item, index, from):
321 if _item_name_to_id["Progressive Orange Tower"] == item and _tower_floors < orange_tower.size(): 321 if _item_name_to_id["Progressive Orange Tower"] == item and _tower_floors < orange_tower.size():
322 var subitem_name = "Orange Tower - %s Floor" % orange_tower[_tower_floors] 322 var subitem_name = "Orange Tower - %s Floor" % orange_tower[_tower_floors]
323 global._print(subitem_name) 323 global._print(subitem_name)
324 processItem(_item_name_to_id[subitem_name], null) 324 processItem(_item_name_to_id[subitem_name], null, null)
325 _tower_floors += 1 325 _tower_floors += 1
326 326
327 # Show a message about the item if it's new. 327 # Show a message about the item if it's new.
"nb">find_package(SDL2_ttf REQUIRED) find_package(SDL2_net REQUIRED) include_directories( ${SDL2_INCLUDE_DIR} ${SDL2_TTF_INCLUDE_DIR} ${SDL2_NET_INCLUDE_DIRS} ) add_executable(mazeoflife hslist.cpp hs_state.cpp mazeoflife.cpp util.cpp titlestate.cpp gamestate.cpp) set_property(TARGET mazeoflife PROPERTY CXX_STANDARD 17) set_property(TARGET mazeoflife PROPERTY CXX_STANDARD_REQUIRED ON) target_link_libraries(mazeoflife ${SDL2_LIBRARY} ${SDL2_TTF_LIBRARY} ${SDL2_NET_LIBRARIES})