diff options
author | panikon <panikon@zoho.com> | 2014-07-11 07:56:33 -0300 |
---|---|---|
committer | panikon <panikon@zoho.com> | 2014-07-11 07:56:33 -0300 |
commit | 901a8c9cdf891fb65e160094e52346b2aa4e9754 (patch) | |
tree | 9eccdd9ed6408d553b652f8e14b79d399e23c477 /src/map/pc.c | |
parent | 0539a1247d909b11a9730a12ff0a72d110371fcb (diff) | |
download | hercules-901a8c9cdf891fb65e160094e52346b2aa4e9754.tar.gz hercules-901a8c9cdf891fb65e160094e52346b2aa4e9754.tar.bz2 hercules-901a8c9cdf891fb65e160094e52346b2aa4e9754.tar.xz hercules-901a8c9cdf891fb65e160094e52346b2aa4e9754.zip |
Follow up to da190e09a33591aaabfd2c7735fd64ebb12f78e9
- Added SC_FALLENEMPIRE and updated const.txt
Special thanks to Rytech
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index fb1fae2c7..1ab9b0e2e 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -8153,8 +8153,8 @@ bool pc_can_attack( struct map_session_data *sd, int target_id ) { sd->sc.data[SC_TRICKDEAD] || (sd->sc.data[SC_SIREN] && sd->sc.data[SC_SIREN]->val2 == target_id) || sd->sc.data[SC_BLADESTOP] || - sd->sc.data[SC_DEEP_SLEEP] /*|| - sd->sc.data[SC_FALLENEMPIRE]TODO*/) + sd->sc.data[SC_DEEP_SLEEP] || + sd->sc.data[SC_FALLENEMPIRE] ) return false; return true; |