diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-09-08 13:57:43 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-09-08 13:57:43 -0300 |
commit | 960ecd8767e4af8a840dec7b76c09151a93dfbd2 (patch) | |
tree | f25a17eec37dcc632293b69e82f4ebfc221cd221 | |
parent | a878aa8b9ac8d9b87ee98be5b3c22b99dfbe6b1b (diff) | |
download | serverdata-960ecd8767e4af8a840dec7b76c09151a93dfbd2.tar.gz serverdata-960ecd8767e4af8a840dec7b76c09151a93dfbd2.tar.bz2 serverdata-960ecd8767e4af8a840dec7b76c09151a93dfbd2.tar.xz serverdata-960ecd8767e4af8a840dec7b76c09151a93dfbd2.zip |
[skip ci] don't mind this test commit
-rw-r--r-- | db/constants.conf | 2 | ||||
-rw-r--r-- | npc/functions/seasons.txt | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/db/constants.conf b/db/constants.conf index 5fed175f9..84864d2ad 100644 --- a/db/constants.conf +++ b/db/constants.conf @@ -3860,7 +3860,7 @@ constants_db: { MASK_SANDSTORM: 32 MASK_SNOW: 64 MASK_CHRISTMAS: 128 - MASK_RESERVED2: 256 + MASK_AUTUMN: 256 comment__: "speechflags" S_FIRST_BLANK_LINE: 1 diff --git a/npc/functions/seasons.txt b/npc/functions/seasons.txt index c2b25c400..7859eb29c 100644 --- a/npc/functions/seasons.txt +++ b/npc/functions/seasons.txt @@ -143,6 +143,9 @@ OnAutumnStart: .@nb = query_sql("SELECT c.name FROM `quest` AS i, `char` AS c WHERE i.quest_id=305 AND i.char_id=c.char_id ORDER BY i.count2 DESC LIMIT 1", .@name$); $@AUTUMN_VICTOR=.@name$[0]; + // Fancy trees + addmapmask "012-1", MASK_AUTUMN; + // Autumn's Drop addmonsterdrop(Mouboo, Mashmallow, 7); end; |