summaryrefslogtreecommitdiff
path: root/npc
diff options
context:
space:
mode:
Diffstat (limited to 'npc')
-rw-r--r--npc/functions/hub.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/functions/hub.txt b/npc/functions/hub.txt
index 592c747b3..6ae3f4dd0 100644
--- a/npc/functions/hub.txt
+++ b/npc/functions/hub.txt
@@ -28,11 +28,11 @@ function script HUB_Login {
// Christmas 2021
if ($EVENT$ == "Christmas") {
if (#XMAS2021 < ##01_TMWEXP) {
- getexp ##01_TMWEXP-#XMAS2021, 0;
+ getexp (##01_TMWEXP-#XMAS2021) * 7 / 10, 0;
#XMAS2021 = ##01_TMWEXP;
} else if (#XMAS2021 > ##01_TMWEXP) {
// You leveled up?
- getexp ##01_TMWEXP, 0;
+ getexp ##01_TMWEXP * 7 / 10, 0;
#XMAS2021 = ##01_TMWEXP;
}
}