Merge pull request #1261 from ghoulslash/u16-abilities
Fix Buffering abilities > 255
This commit is contained in:
commit
15a587f4e9
1 changed files with 1 additions and 1 deletions
|
@ -3432,7 +3432,7 @@ static void ExpandBattleTextBuffPlaceholders(const u8 *src, u8 *dst)
|
||||||
srcID += 2;
|
srcID += 2;
|
||||||
break;
|
break;
|
||||||
case B_BUFF_ABILITY: // ability names
|
case B_BUFF_ABILITY: // ability names
|
||||||
StringAppend(dst, gAbilityNames[src[srcID + 1]]);
|
StringAppend(dst, gAbilityNames[T1_READ_16(&src[srcID + 1])]);
|
||||||
srcID += 3;
|
srcID += 3;
|
||||||
break;
|
break;
|
||||||
case B_BUFF_ITEM: // item name
|
case B_BUFF_ITEM: // item name
|
||||||
|
|
Loading…
Reference in a new issue