diff options
author | rud0lp20 <rud0lp20@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-05-16 16:56:43 +0000 |
---|---|---|
committer | rud0lp20 <rud0lp20@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-05-16 16:56:43 +0000 |
commit | 3089bee74700694461fdc50bf9e9aa01fe589730 (patch) | |
tree | cf330782d4f381fe4caad9915824f51dcdd39648 /src/map/atcommand.c | |
parent | f3bc6581829e1b0111110c4bd42626cd0886593d (diff) | |
download | hercules-3089bee74700694461fdc50bf9e9aa01fe589730.tar.gz hercules-3089bee74700694461fdc50bf9e9aa01fe589730.tar.bz2 hercules-3089bee74700694461fdc50bf9e9aa01fe589730.tar.xz hercules-3089bee74700694461fdc50bf9e9aa01fe589730.zip |
Fixed bugreport:5749 Amplify Magic Power should now work properly on multi-hit magical skills.
Fixed bugreport:5748 Masquerade-Groomy now removes Dragon and Warg.
Fixed bugreport:5751 Implemented script command in checking/mounting Dragon, Warg and MADO Gear, also made a clean up regarding MADO Gear and Warg conditions.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16114 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index a3212d43f..3bfe53522 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -4257,7 +4257,7 @@ ACMD_FUNC(mount_peco) return 0; } if( (sd->class_&MAPID_THIRDMASK) == MAPID_MECHANIC ) { - if( !(sd->sc.option&OPTION_MADOGEAR) ) { + if( !pc_ismadogear(sd) ) { clif_displaymessage(sd->fd,"You have mounted your Mado Gear"); pc_setoption(sd, sd->sc.option|OPTION_MADOGEAR); } else { |