Skip to content

Commit 3bed82f

Browse files
committed
use paren syntax instead of \
1 parent 84d46e0 commit 3bed82f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Hints.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1818,8 +1818,8 @@ def build_misc_item_hints(world: World, messages: list[Message], allow_duplicate
18181818
for hint_type, data in misc_item_hint_table.items():
18191819
if hint_type in world.settings.misc_hints:
18201820
item = world.misc_hint_items[hint_type]
1821-
if item in world.distribution.effective_starting_items and world.distribution.effective_starting_items[item].count > 0 or \
1822-
item in world.distribution.randomized_starting_items and world.distribution.randomized_starting_items[item] > 0:
1821+
if (item in world.distribution.effective_starting_items and world.distribution.effective_starting_items[item].count > 0 or
1822+
item in world.distribution.randomized_starting_items and world.distribution.randomized_starting_items[item] > 0):
18231823
if item == data['default_item']:
18241824
text = data['default_item_text'].format(area='#your pocket#')
18251825
else:

0 commit comments

Comments
 (0)