diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-04-25 00:07:42 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-04-25 00:07:42 -0300 |
commit | 797ba0b43d4b84fec2a90c2b4b056bd203d3bd14 (patch) | |
tree | 478c0614dec27f24c2fc84b3da3263c0b4a27935 /npc/commands | |
parent | ed185c63c1662b51d70b0c4e80946b7fb990882d (diff) | |
download | serverdata-797ba0b43d4b84fec2a90c2b4b056bd203d3bd14.tar.gz serverdata-797ba0b43d4b84fec2a90c2b4b056bd203d3bd14.tar.bz2 serverdata-797ba0b43d4b84fec2a90c2b4b056bd203d3bd14.tar.xz serverdata-797ba0b43d4b84fec2a90c2b4b056bd203d3bd14.zip |
This fixes the long standing bug where events did not end properly.
Diffstat (limited to 'npc/commands')
-rw-r--r-- | npc/commands/event.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/commands/event.txt b/npc/commands/event.txt index 0e4ccd621..9a20d02b9 100644 --- a/npc/commands/event.txt +++ b/npc/commands/event.txt @@ -308,7 +308,7 @@ function script GlobalEventMenu { l("Reset Kill Saulc Event (Monthly)"); switch (@menu) { - case 1: sClear(); set $EVENT$, ""; logmes "Disabled events.", LOGMES_ATCOMMAND; + case 1: .@r=playerattached(); sClear(); set $EVENT$, ""; attachrid(.@r); logmes "Disabled events.", LOGMES_ATCOMMAND; break; case 2: set $EVENT$, "Valentine"; $@VALENTINE_LOVELETTER = htnew(); $@VALENTINE_GIFTSTACKS = htnew(); logmes "Enabled VALENTINE DAY event.", LOGMES_ATCOMMAND; |