diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2019-09-04 17:45:04 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-04 17:45:04 -0400 |
commit | c647a8329f41c8329653f0017a20f247a8c80746 (patch) | |
tree | bc9ff69796e9346db34b025e4554775ac111b7c8 /src/fire.c | |
parent | 4a0cad80b0b8193b840f34b6602ae6325ed95622 (diff) |
Use gBattlerPositions constants
Diffstat (limited to 'src/fire.c')
-rw-r--r-- | src/fire.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fire.c b/src/fire.c index f87a9e4bb..fdbfb234e 100644 --- a/src/fire.c +++ b/src/fire.c @@ -1181,7 +1181,7 @@ void sub_8109DBC(u8 taskId) { struct Task *task = &gTasks[taskId]; - task->data[12] = !GetBattlerSide(gBattleAnimAttacker) ? B_SIDE_OPPONENT : -1; + task->data[12] = !GetBattlerSide(gBattleAnimAttacker) ? 1 : -1; task->data[13] = IsBattlerSpriteVisible(gBattleAnimTarget ^ 2) + 1; task->data[14] = GetAnimBattlerSpriteId(1); task->data[15] = GetAnimBattlerSpriteId(3); |