diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-01 23:19:18 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-01 23:19:18 +0000 |
commit | 1efc5809bf874072d0b5f1b2f9f544fad8825852 (patch) | |
tree | b571c1ac0d611d19e9469622aa11314bf68ef0c4 /src/map | |
parent | b8884e019eec9f319502c7f35d9a35002c83ba91 (diff) | |
download | hercules-1efc5809bf874072d0b5f1b2f9f544fad8825852.tar.gz hercules-1efc5809bf874072d0b5f1b2f9f544fad8825852.tar.bz2 hercules-1efc5809bf874072d0b5f1b2f9f544fad8825852.tar.xz hercules-1efc5809bf874072d0b5f1b2f9f544fad8825852.zip |
- Fixed being unable to unequip stuff while the storage is open.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6920 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map')
-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 7c82b1159..fc81925ee 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -9291,9 +9291,6 @@ void clif_parse_UnequipItem(int fd,struct map_session_data *sd) else if (clif_cant_act(sd))
return;
- if (clif_cant_act(sd))
- return;
-
index = RFIFOW(fd,2)-2;
pc_unequipitem(sd,index,1);
|