diff options
Diffstat (limited to 'npc/003-1-1')
-rw-r--r-- | npc/003-1-1/yetiking.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/npc/003-1-1/yetiking.txt b/npc/003-1-1/yetiking.txt index 83b7a3599..55d2d893e 100644 --- a/npc/003-1-1/yetiking.txt +++ b/npc/003-1-1/yetiking.txt @@ -19,7 +19,7 @@ end; L_Summon: - if (countitem(EverburnPowder) < 1) { + if (countitem(EverburnPowder) < 1 && $EVENT$ != "Celestia") { dispbottom l("I need to pour the @@ to summon the Yeti King.", getitemlink(EverburnPowder)); end; } @@ -28,7 +28,8 @@ L_Summon: end; } - delitem EverburnPowder, 1; + if ($EVENT$ != "Celestia") + delitem EverburnPowder, 1; dispbottom l("Emoc otem itey gnik!"); // come to me yeti king, spelled backwards. Sorry. callfunc "FYE_Olympics_CH"; .inUse=1; |