Skip to content

Commit 6a68f7b

Browse files
authored
Merge pull request #1 from hopop201/patch-1
Patch 1
2 parents 37ad1a4 + 810f127 commit 6a68f7b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

worlds/sc2hots/Items.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ def get_full_item_list():
184184
"3 Kerrigan Levels": ItemData(507 + SC2HOTS_ITEM_ID_OFFSET, "Level", 3, quantity=0, classification=ItemClassification.filler),
185185
"2 Kerrigan Levels": ItemData(508 + SC2HOTS_ITEM_ID_OFFSET, "Level", 2, quantity=0, classification=ItemClassification.filler),
186186
"1 Kerrigan Level": ItemData(509 + SC2HOTS_ITEM_ID_OFFSET, "Level", 1, quantity=0, classification=ItemClassification.filler),
187-
"15 Kerrigan Levels": ItemData(510 + SC2HOTS_ITEM_ID_OFFSET, "Level", 15, quantity=0),
187+
"14 Kerrigan Levels": ItemData(510 + SC2HOTS_ITEM_ID_OFFSET, "Level", 14, quantity=0),
188188
"35 Kerrigan Levels": ItemData(511 + SC2HOTS_ITEM_ID_OFFSET, "Level", 35, quantity=0),
189189
"70 Kerrigan Levels": ItemData(512 + SC2HOTS_ITEM_ID_OFFSET, "Level", 70, quantity=0),
190190
# "War Pigs": ItemData(500 + SC2HOTS_ITEM_ID_OFFSET, "Mercenary", 0, classification=ItemClassification.progression),

worlds/sc2hots/Options.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ class KerriganLevelDistribution(Choice):
161161
intended to fit more levels into settings with little room for filler while keeping some variance in level gains.
162162
1x70: Uses 1 items worth 70 levels.
163163
2x35: Uses 2 items worth 35 levels each.
164-
5x15: Uses 5 items worth 15 levels each.
164+
5x14: Uses 5 items worth 14 levels each.
165165
7x10: Uses 7 items worth 10 levels each.
166166
10x7: Uses 10 items worth 7 levels each.
167167
14x5: Uses 14 items worth 5 levels each.
@@ -173,7 +173,7 @@ class KerriganLevelDistribution(Choice):
173173
option_smooth = 1
174174
option_1x70 = 2
175175
option_2x35 = 3
176-
option_5x15 = 4
176+
option_5x14 = 4
177177
option_7x10 = 5
178178
option_10x7 = 6
179179
option_14x5 = 7

worlds/sc2hots/__init__.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -281,9 +281,9 @@ def fill_pool_with_kerrigan_levels(multiworld: MultiWorld, player: int, item_poo
281281
elif option == 3: # 2x35
282282
item_pool.append(create_item_with_correct_settings(player, "35 Kerrigan Levels"))
283283
item_pool.append(create_item_with_correct_settings(player, "35 Kerrigan Levels"))
284-
elif option == 4: # 5x15
284+
elif option == 4: # 5x14
285285
for _ in range(5):
286-
item_pool.append(create_item_with_correct_settings(player, "15 Kerrigan Levels"))
286+
item_pool.append(create_item_with_correct_settings(player, "154 Kerrigan Levels"))
287287
elif option == 5: # 7x10
288288
distribution = [0, 0, 0, 0, 0, 0, 0, 0, 0, 7]
289289
elif option == 6: # 10x7
@@ -300,4 +300,4 @@ def fill_pool_with_kerrigan_levels(multiworld: MultiWorld, player: int, item_poo
300300
if tier > 0:
301301
name += "s"
302302
for _ in range(distribution[tier]):
303-
item_pool.append(create_item_with_correct_settings(player, name))
303+
item_pool.append(create_item_with_correct_settings(player, name))

0 commit comments

Comments
 (0)