sm64ex: Fix a Location (#979)

This commit is contained in:
Yussur Mustafa Oraji 2022-09-01 21:21:53 +02:00 committed by GitHub
parent b115bdafe7
commit 03f66a922d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -245,7 +245,7 @@ locBitFS_table = {
locWMotR_table = {
"Wing Mario Over the Rainbow Red Coins": 3626154,
"Wing Mario Over the Rainbow 1Up Block": 3626242
"Wing Mario Over the Rainbow 1Up Block": 3626243
}
locBitS_table = {
@ -268,4 +268,4 @@ location_table = {**locBoB_table,**locWhomp_table,**locJRB_table,**locCCM_table,
**locWDW_table,**locTTM_table,**locTHI_table,**locTTC_table,**locRR_table, \
**loc100Coin_table,**locPSS_table,**locSA_table,**locBitDW_table,**locTotWC_table, \
**locCotMC_table, **locVCutM_table, **locBitFS_table, **locWMotR_table, **locBitS_table, \
**locSS_table}
**locSS_table}

View File

@ -34,7 +34,7 @@ class SM64World(World):
item_name_to_id = item_table
location_name_to_id = location_table
data_version = 7
data_version = 8
required_client_version = (0, 3, 0)
area_connections: typing.Dict[int, int]