diff options
author | Fedja Beader <fedja@protonmail.ch> | 2024-06-30 16:32:12 +0200 |
---|---|---|
committer | Fedja Beader <fedja@protonmail.ch> | 2024-06-30 16:32:58 +0200 |
commit | dbdc81278ab6821c038c57285d6df0b6d83b8fc2 (patch) | |
tree | 5eef486e9c79adba9fea5683c5d543b91a5a8e46 | |
parent | a7237a8e423d00b74a1277203aa6405153bae4d9 (diff) | |
download | serverdata-dbdc81278ab6821c038c57285d6df0b6d83b8fc2.tar.gz serverdata-dbdc81278ab6821c038c57285d6df0b6d83b8fc2.tar.bz2 serverdata-dbdc81278ab6821c038c57285d6df0b6d83b8fc2.tar.xz serverdata-dbdc81278ab6821c038c57285d6df0b6d83b8fc2.zip |
Aurora wasn't giving participation points for these four challenges.
-rw-r--r-- | npc/functions/aurora.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/functions/aurora.txt b/npc/functions/aurora.txt index 9492b7ea5..3c5708e16 100644 --- a/npc/functions/aurora.txt +++ b/npc/functions/aurora.txt @@ -615,7 +615,7 @@ function script FYE_Olympics_SK { .@sk != TMW2_OVHFIRE) FYMOLY_SPAMMY += .@sl; - setq Q_AuroraEvent, getq2(Q_AuroraEvent) + rand2(.@sl + 1); + setq2 Q_AuroraEvent, (getq2(Q_AuroraEvent) + rand2(.@sl + 1)); return; } @@ -625,7 +625,7 @@ function script FYE_Olympics_MX { .@var=getarg(0, 0); FYMOLY_MANAXP += .@var; - setq Q_AuroraEvent, getq2(Q_AuroraEvent) + rand2(.@var + 1); + setq2 Q_AuroraEvent, (getq2(Q_AuroraEvent) + rand2(.@var + 1)); return; } @@ -635,7 +635,7 @@ function script FYE_Olympics_CH { // TODO: Change based on using different verbs/adjectives? FYMOLY_CHANTI += 1; - setq Q_AuroraEvent, getq2(Q_AuroraEvent) + 1; + setq2 Q_AuroraEvent, (getq2(Q_AuroraEvent) + 1); return; } @@ -645,7 +645,7 @@ function script FYE_Olympics_AL { .@units = getarg(0, 1); FYMOLY_ALCHMY += .@units; - setq Q_AuroraEvent, getq2(Q_AuroraEvent) + .@units; + setq2 Q_AuroraEvent, (getq2(Q_AuroraEvent) + .@units); return; } |