summaryrefslogtreecommitdiff
path: root/src/map/script.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-08-21 14:05:24 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-08-21 14:05:24 +0000
commit74aac1368dae2d2a8ed5e3897a3cafb0fc5a8984 (patch)
tree0399235ad0454e7baa6ab1c93b5b338f9ef8bfa5 /src/map/script.c
parent4d56e510be1ebe8075e3e186cf501c2fe8617952 (diff)
downloadhercules-74aac1368dae2d2a8ed5e3897a3cafb0fc5a8984.tar.gz
hercules-74aac1368dae2d2a8ed5e3897a3cafb0fc5a8984.tar.bz2
hercules-74aac1368dae2d2a8ed5e3897a3cafb0fc5a8984.tar.xz
hercules-74aac1368dae2d2a8ed5e3897a3cafb0fc5a8984.zip
- Fixed the Autosave routine not working when there's only one player online.
- Disabled command @rain since the client no longer supports it anyway. - Fixed delitem not checking for the first slot's card, also optimized it so that it doesn't checks on the other slots. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8399 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/script.c')
-rw-r--r--src/map/script.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/map/script.c b/src/map/script.c
index 070722866..6aa199d1b 100644
--- a/src/map/script.c
+++ b/src/map/script.c
@@ -5430,9 +5430,7 @@ int buildin_delitem(struct script_state *st)
}
//is this item important? does it have cards? or Player's name? or Refined/Upgraded
if(itemdb_isspecial(sd->status.inventory[i].card[0]) ||
- sd->status.inventory[i].card[1] ||
- sd->status.inventory[i].card[2] ||
- sd->status.inventory[i].card[3] ||
+ sd->status.inventory[i].card[0] ||
sd->status.inventory[i].refine) {
//this is important item, count it (except for pet eggs)
if(sd->status.inventory[i].card[0] != CARD0_PET)