blob: bf30b8c59a1766b8450bf92901846f805925a018 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
RemoveGuardDrink::
ld hl, GuardDrinksList
.drinkLoop
ld a, [hli]
ldh [hItemToRemoveID], a
and a
ret z
push hl
ld b, a
call IsItemInBag
pop hl
jr z, .drinkLoop
farjp RemoveItemByID
INCLUDE "data/items/guard_drink_items.asm"
|