Finish new connection macro

Tried simplifying things a bit, although not nearly as much as I wanted.
Ideally, we'd either have one of two situations:
- A single set of calculations based on values depending on the
direction of the connection
- A bunch of "generic" calculations done before applying simple
modifiers to them in the final `if` block

Right now it's an icky mix of both and I'm not really sure what to make
of it.
This commit is contained in:
mid-kid
2018-11-10 14:27:46 +01:00
parent abb9454307
commit 375963349a
2 changed files with 61 additions and 64 deletions

View File

@@ -18,7 +18,7 @@ InitCommandQueue:
EnterMapConnection:
; Return carry if a connection has been entered.
ld a, [wPlayerStepDirection]
and a
and a ; DOWN
jp z, .south
cp UP
jp z, .north