diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-12-18 15:01:18 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-12-18 15:01:18 +0000 |
commit | 4add6a5ba3b45cf97a3731a8a38577e7506bca30 (patch) | |
tree | 9fd52a653f7f03fe29b27017e703026fcf23d428 /src/map/clif.c | |
parent | b9e50a1dcc19e83de8067a4aab688c12a0aab671 (diff) | |
download | hercules-4add6a5ba3b45cf97a3731a8a38577e7506bca30.tar.gz hercules-4add6a5ba3b45cf97a3731a8a38577e7506bca30.tar.bz2 hercules-4add6a5ba3b45cf97a3731a8a38577e7506bca30.tar.xz hercules-4add6a5ba3b45cf97a3731a8a38577e7506bca30.zip |
- removed redundant clif_hominfo line in merc_hom_dead (it was sent already from hom_damage)
- Item usage is now blocked while hidden.
- Moved the bladestop/berserk check from clif_parse_EquipItem to pc_equipitem
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11942 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 957154a3d..8a0b2f66a 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -8631,9 +8631,6 @@ void clif_parse_EquipItem(int fd,struct map_session_data *sd) else if (pc_cant_act(sd)) return; - if(sd->sc.data[SC_BLADESTOP] || sd->sc.data[SC_BERSERK]) - return; - if(!sd->status.inventory[index].identify) { clif_equipitemack(sd,index,0,0); // fail return; |