diff options
Diffstat (limited to 'src/map/pc.cpp')
-rw-r--r-- | src/map/pc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/pc.cpp b/src/map/pc.cpp index b9b41d9..8cd19d9 100644 --- a/src/map/pc.cpp +++ b/src/map/pc.cpp @@ -3595,7 +3595,7 @@ int pc_readparam(dumb_ptr<block_list> bl, SP type) val = sd ? sd->mute.guild : 0; break; case SP::AUTOMOD: - val = sd ? (int)sd->automod : 0; + val = sd ? static_cast<int>(sd->automod) : 0; break; } @@ -3844,7 +3844,7 @@ int pc_setparam(dumb_ptr<block_list> bl, SP type, int val) break; case SP::AUTOMOD: nullpo_retz(sd); - sd->automod = (AutoMod)val; + sd->automod = static_cast<AutoMod>(val); break; } |