Skip to content

Commit 47bea68

Browse files
committed
Working Client
1 parent 5784e05 commit 47bea68

File tree

5 files changed

+1368
-36
lines changed

5 files changed

+1368
-36
lines changed

worlds/sneak_king/Items.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,10 @@ class SneakKingItem(Item):
1616

1717

1818
items: list[ItemData] = []
19+
index = 0
1920
for level in ["Sawmill", "Cul-De-Sac", "Construction", "Downtown"]:
20-
items += [ItemData(f"{level} Mission {i} Unlock", i, ItemClassification.progression) for i in range(2, 21)] # start at 2
21+
items += [ItemData(f"{level} Mission {i} Unlock", i + index, ItemClassification.progression) for i in range(2, 21)] # start at 2
22+
index += 20
2123
items += [
2224
ItemData("Sawmill Unlock", 81, ItemClassification.progression),
2325
ItemData("Cul-De-Sac Unlock", 82, ItemClassification.progression),

worlds/sneak_king/Patcher.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ class SneakKingProcedurePatch(APProcedurePatch):
116116
game = "Sneak King"
117117
patch_file_ending = ".apsk"
118118
result_file_ending = ".iso"
119+
hash = ''
119120
procedure = []
120121

121122
@classmethod

0 commit comments

Comments
 (0)