summaryrefslogtreecommitdiff
path: root/src/map/status.c
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2020-02-09 23:10:59 +0100
committerGitHub <noreply@github.com>2020-02-09 23:10:59 +0100
commit1a0619fcedf573c7004489470f169e112fa1bb62 (patch)
tree47b502114376a2a8cd59604731703b93504fb4e5 /src/map/status.c
parent66b624165ba2e7c868b38081230a61691be447df (diff)
parent7510db3f7b8990bbbcebcb1c3de8d20f8f27d011 (diff)
downloadhercules-1a0619fcedf573c7004489470f169e112fa1bb62.tar.gz
hercules-1a0619fcedf573c7004489470f169e112fa1bb62.tar.bz2
hercules-1a0619fcedf573c7004489470f169e112fa1bb62.tar.xz
hercules-1a0619fcedf573c7004489470f169e112fa1bb62.zip
Merge pull request #2586 from Asheraf/madostatueffect
Implement support for switching madogear type
Diffstat (limited to 'src/map/status.c')
-rw-r--r--src/map/status.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/map/status.c b/src/map/status.c
index 3b99b99b8..1f0f31119 100644
--- a/src/map/status.c
+++ b/src/map/status.c
@@ -9798,6 +9798,9 @@ static int status_get_val_flag(enum sc_type type)
case SC_DAILYSENDMAILCNT:
val_flag |= 1 | 2;
break;
+ case SC_MADOGEAR:
+ val_flag |= 1;
+ break;
}
return val_flag;
}