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.
194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307