mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-04-19 05:13:31 -07:00
MM2: minor bugfixes (#4190)
* move special cases to be outside strict * Update text.py * fix wily machine edge case, incorrect weapons, and time stopper failsafe * bump world version * weakness checking is inclusive * Update __init__.py * add air shooter to edge case validation
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
from typing import DefaultDict
|
||||
from collections import defaultdict
|
||||
|
||||
MM2_WEAPON_ENCODING: DefaultDict[str, int] = defaultdict(lambda x: 0x6F, {
|
||||
MM2_WEAPON_ENCODING: DefaultDict[str, int] = defaultdict(lambda: 0x6F, {
|
||||
' ': 0x40,
|
||||
'A': 0x41,
|
||||
'B': 0x42,
|
||||
|
||||
Reference in New Issue
Block a user