We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf42927 commit 32b31c1Copy full SHA for 32b31c1
worlds/zillion/logic.py
@@ -28,7 +28,7 @@ def set_randomizer_locs(cs: CollectionState, p: int, zz_r: Randomizer) -> int:
28
if isinstance(z_loc.item, ZillionItem) and z_loc.item.player == p \
29
else zz_empty
30
zz_r.locations[zz_name].item = zz_item
31
- _hash += hash(zz_name) ^ hash(zz_item)
+ _hash += (hash(zz_name) * (z_loc.zz_loc.req.gun + 2)) ^ hash(zz_item)
32
return _hash
33
34
0 commit comments