Skip to content

Commit

Permalink
whoops again
Browse files Browse the repository at this point in the history
  • Loading branch information
bates64 authored Feb 27, 2024
1 parent c76b58c commit 40cba65
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/battle/1A5830.c
Original file line number Diff line number Diff line change
Expand Up @@ -2700,8 +2700,8 @@ API_CALLABLE(RemoveActor) {
}

/// Star Point multiplier, indexed by actor count.
/// +10% multiplier for four actors
/// +30% multiplier for three or more actors
/// +10% multiplier for three actors
/// +30% multiplier for four or more actors
s32 StarPointMultiplier[] = {
100, 100, 100,
110,
Expand Down Expand Up @@ -2737,7 +2737,7 @@ API_CALLABLE(DropStarPoints) {

ntd = 0.0f;
if (!(enemyLevel < playerLevel)) {
ntd = ((enemyLevel - playerLevel) * 0.5f) * multiplier[battleStatus->initialEnemyCount];
ntd = ((enemyLevel - playerLevel) * 0.5f) * StarPointMultiplier[battleStatus->initialEnemyCount];
ntd = (ntd + 50.0f) / 100.0f;
}
numToDrop = ntd;
Expand Down

0 comments on commit 40cba65

Please sign in to comment.