summaryrefslogtreecommitdiff
path: root/src/update_objects.c
diff options
context:
space:
mode:
authorMegaMech <MegaMech@users.noreply.github.com>2025-06-26 17:51:03 -0600
committerGitHub <noreply@github.com>2025-06-26 17:51:03 -0600
commite6c86e1fe0274cf33679d2ad2347ce46535c6002 (patch)
tree72cf6e8558eda7a76b9f855cfe50326557092a4f /src/update_objects.c
parentfd585356750bc0b5707959323f44dce5e2513bd3 (diff)
Update update_objects.c
Diffstat (limited to 'src/update_objects.c')
-rw-r--r--src/update_objects.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/update_objects.c b/src/update_objects.c
index da867e84b..917fe502b 100644
--- a/src/update_objects.c
+++ b/src/update_objects.c
@@ -3266,11 +3266,11 @@ u8 gen_random_item(s16 rank, s16 option) {
verify_probability_table("Human", distributionTable, rank);
break;
case CPU_TABLE:
- distributionTable = &grandPrixEasyCPUProbabilityTable[rank];
+ distributionTable = &grandPrixCPUProbabilityTable[rank];
verify_probability_table("CPU", distributionTable, rank);
break;
case HARD_CPU_TABLE:
- distributionTable = &grandPrixNormalCPUProbabilityTable[rank];
+ distributionTable = &grandPrixHardCPUProbabilityTable[rank];
verify_probability_table("Hard CPU", distributionTable, rank);
break;
}