mirror of
https://github.com/doukutsu-rs/doukutsu-rs
synced 2025-03-25 19:40:27 +00:00
Switch offset for Quote in ending cutscene
This commit is contained in:
parent
ef99809c95
commit
f50760d9c6
|
@ -2587,7 +2587,11 @@ impl NPC {
|
||||||
|
|
||||||
if let Some(npc) = self.get_parent_ref_mut(npc_list) {
|
if let Some(npc) = self.get_parent_ref_mut(npc_list) {
|
||||||
self.x = npc.x - 0xe00;
|
self.x = npc.x - 0xe00;
|
||||||
self.y = npc.y - 0x2600;
|
if state.constants.is_switch {
|
||||||
|
self.y = npc.y - 0x2200;
|
||||||
|
} else {
|
||||||
|
self.y = npc.y - 0x2600;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
(_, Direction::Bottom) => {
|
(_, Direction::Bottom) => {
|
||||||
|
|
Loading…
Reference in a new issue