From 2c7c83bd748001a28e20c62f1bceb4fedba540bd Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Thu, 10 Jun 2021 16:04:45 -0300 Subject: Fix MobPoints() wrong calls --- npc/013-1/flowerpentagram.txt | 24 ++++++++---------------- 1 file changed, 8 insertions(+), 16 deletions(-) (limited to 'npc/013-1/flowerpentagram.txt') diff --git a/npc/013-1/flowerpentagram.txt b/npc/013-1/flowerpentagram.txt index 195ada0f..1df7bd77 100644 --- a/npc/013-1/flowerpentagram.txt +++ b/npc/013-1/flowerpentagram.txt @@ -36,43 +36,35 @@ OnSummon: end; OnSquirrelDeath: - @mobId = 1105; - callfunc "MobPoints"; + fix_mobkill(1105); end; OnMushroomDeath: - @mobId = 1106; - callfunc "MobPoints"; + fix_mobkill(1106); end; OnBlueparDeath: - @mobId = 1107; - callfunc "MobPoints"; + fix_mobkill(1107); end; OnMoubooDeath: - @mobId = 1104; - callfunc "MobPoints"; + fix_mobkill(1104); end; OnScorpionDeath: - @mobId = 1003; - callfunc "MobPoints"; + fix_mobkill(1003); end; OnRScorpionDeath: - @mobId = 1004; - callfunc "MobPoints"; + fix_mobkill(1004); end; OnAScorpionDeath: - @mobId = 1057; - callfunc "MobPoints"; + fix_mobkill(1057); end; OnBScorpionDeath: - @mobId = 1009; - callfunc "MobPoints"; + fix_mobkill(1009); end; S_CleanUp: -- cgit v1.2.3-70-g09d2