Minor fix to vanilla doors
This commit is contained in:
2
Main.py
2
Main.py
@@ -24,7 +24,7 @@ from Fill import distribute_items_cutoff, distribute_items_staleness, distribute
|
|||||||
from ItemList import generate_itempool, difficulties, fill_prizes
|
from ItemList import generate_itempool, difficulties, fill_prizes
|
||||||
from Utils import output_path, parse_player_names
|
from Utils import output_path, parse_player_names
|
||||||
|
|
||||||
__version__ = '0.0.20.5u'
|
__version__ = '0.0.20.6u'
|
||||||
|
|
||||||
|
|
||||||
class EnemizerError(RuntimeError):
|
class EnemizerError(RuntimeError):
|
||||||
|
|||||||
@@ -25,5 +25,5 @@ Note: Only one of the key indicator will probably become core at most.
|
|||||||
|
|
||||||
* Splashing at hobo no longer prevents you from buying bomb capacity upgrades
|
* Splashing at hobo no longer prevents you from buying bomb capacity upgrades
|
||||||
* Small vitreous eyeballs will not drop items (DR basic and crossed only)
|
* Small vitreous eyeballs will not drop items (DR basic and crossed only)
|
||||||
* In Vanilla doors the HC back hallway area was broken - should be better now
|
* In Vanilla doors the HC back hallway area was broken - should be better now - also Trap Doors
|
||||||
* Firebar speed should now be consistent. Ice palace rooms have slow firebars even if shuffled to other dungeons. Others should have normal speed firebars.
|
* Firebar speed should now be consistent. Ice palace rooms have slow firebars even if shuffled to other dungeons. Others should have normal speed firebars.
|
||||||
2
Rom.py
2
Rom.py
@@ -22,7 +22,7 @@ from EntranceShuffle import door_addresses, exit_ids
|
|||||||
|
|
||||||
|
|
||||||
JAP10HASH = '03a63945398191337e896e5771f77173'
|
JAP10HASH = '03a63945398191337e896e5771f77173'
|
||||||
RANDOMIZERBASEHASH = '5af37026eb2c5a5d21a2d16724be805c'
|
RANDOMIZERBASEHASH = 'fbdff4dcb6b4c196ab5f8c3913aac2c7'
|
||||||
|
|
||||||
|
|
||||||
class JsonRom(object):
|
class JsonRom(object):
|
||||||
|
|||||||
@@ -12,8 +12,9 @@
|
|||||||
CheckIfDoorsOpen: {
|
CheckIfDoorsOpen: {
|
||||||
jsr TrapDoorFixer ; see normal.asm
|
jsr TrapDoorFixer ; see normal.asm
|
||||||
; note we are 16bit mode right now
|
; note we are 16bit mode right now
|
||||||
|
lda DRMode : beq +
|
||||||
lda $040c : cmp #$00ff : bne .gtg
|
lda $040c : cmp #$00ff : bne .gtg
|
||||||
lda $a0 : dec : tax : and #$000f ; hijacked code
|
+ lda $a0 : dec : tax : and #$000f ; hijacked code
|
||||||
sec : rtl ; set carry to indicate normal behavior
|
sec : rtl ; set carry to indicate normal behavior
|
||||||
|
|
||||||
.gtg
|
.gtg
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user