From 6ccf7997edf03c40aa9f555630245db787686dc6 Mon Sep 17 00:00:00 2001 From: Zeta_Null Date: Tue, 7 Jan 2025 14:14:20 -0500 Subject: [PATCH] Diploma Fix for Pink? --- engine/events/diploma.asm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/engine/events/diploma.asm b/engine/events/diploma.asm index be211b16..5ca0075d 100644 --- a/engine/events/diploma.asm +++ b/engine/events/diploma.asm @@ -42,10 +42,16 @@ DisplayDiploma:: ld a, [wPlayerSex] and a ; are you playing as Red jr z, .red ; if yes, Red appears on the diploma + ld a, [wPlayerSex] + cp a, 2 + jr z, .pink ; if yes, Pink appears on the diploma jr nz, .green ; if no, Green replaces him .green farcall DrawFPlayerCharacter jr .skip +.pink + farcall DrawNBPlayerCharacter + jr .skip .red farcall DrawPlayerCharacter .skip