about summary refs log tree commit diff stats
path: root/Archipelago/client.gd
diff options
context:
space:
mode:
Diffstat (limited to 'Archipelago/client.gd')
-rw-r--r--Archipelago/client.gd15
1 files changed, 8 insertions, 7 deletions
diff --git a/Archipelago/client.gd b/Archipelago/client.gd index b93e1cc..7cf1d01 100644 --- a/Archipelago/client.gd +++ b/Archipelago/client.gd
@@ -65,12 +65,12 @@ const progressive_items = {
65 ], 65 ],
66 "Progressive Pilgrimage": 66 "Progressive Pilgrimage":
67 [ 67 [
68 {"item": "Hub Room - 1 Sunwarp", "display": "1 Sunwarp"}, 68 {"item": "1 Sunwarp", "display": "1 Sunwarp"},
69 {"item": "Orange Tower Fourth Floor - 2 Sunwarp", "display": "2 Sunwarp"}, 69 {"item": "2 Sunwarp", "display": "2 Sunwarp"},
70 {"item": "Orange Tower Third Floor - 3 Sunwarp", "display": "3 Sunwarp"}, 70 {"item": "3 Sunwarp", "display": "3 Sunwarp"},
71 {"item": "Orange Tower First Floor - 4 Sunwarp", "display": "4 Sunwarp"}, 71 {"item": "4 Sunwarp", "display": "4 Sunwarp"},
72 {"item": "Orange Tower Fourth Floor - 5 Sunwarp", "display": "5 Sunwarp"}, 72 {"item": "5 Sunwarp", "display": "5 Sunwarp"},
73 {"item": "Outside The Agreeable - 6 Sunwarp", "display": "6 Sunwarp"}, 73 {"item": "6 Sunwarp", "display": "6 Sunwarp"},
74 ] 74 ]
75} 75}
76 76
@@ -93,7 +93,8 @@ const kCLASSIFICATION_REMOTE_INSANITY = 2
93const kSUNWARP_ACCESS_NORMAL = 0 93const kSUNWARP_ACCESS_NORMAL = 0
94const kSUNWARP_ACCESS_DISABLED = 1 94const kSUNWARP_ACCESS_DISABLED = 1
95const kSUNWARP_ACCESS_UNLOCK = 2 95const kSUNWARP_ACCESS_UNLOCK = 2
96const kSUNWARP_ACCESS_PROGRESSIVE = 3 96const kSUNWARP_ACCESS_INDIVIDUAL = 3
97const kSUNWARP_ACCESS_PROGRESSIVE = 4
97 98
98var _client = WebSocketClient.new() 99var _client = WebSocketClient.new()
99var _should_process = false 100var _should_process = false