text_jump → text_far
The previous name for this was rather misleading. It isn't an actual jump like you'd expect the `jp` instruction to behave as. Instead, it behaves more like a `farcall`. This also makes it consistent with its current command ID name of `TX_FAR`.
This commit is contained in:
@@ -97,21 +97,21 @@ GetFruitTreeItem:
|
||||
INCLUDE "data/items/fruit_trees.asm"
|
||||
|
||||
FruitBearingTreeText:
|
||||
text_jump _FruitBearingTreeText
|
||||
text_far _FruitBearingTreeText
|
||||
db "@"
|
||||
|
||||
HeyItsFruitText:
|
||||
text_jump _HeyItsFruitText
|
||||
text_far _HeyItsFruitText
|
||||
db "@"
|
||||
|
||||
ObtainedFruitText:
|
||||
text_jump _ObtainedFruitText
|
||||
text_far _ObtainedFruitText
|
||||
db "@"
|
||||
|
||||
FruitPackIsFullText:
|
||||
text_jump _FruitPackIsFullText
|
||||
text_far _FruitPackIsFullText
|
||||
db "@"
|
||||
|
||||
NothingHereText:
|
||||
text_jump _NothingHereText
|
||||
text_far _NothingHereText
|
||||
db "@"
|
||||
|
Reference in New Issue
Block a user