diff options
author | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-04-29 17:49:31 +0000 |
---|---|---|
committer | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-04-29 17:49:31 +0000 |
commit | fc558de14f8844cfbe7452413df523e97aa4c0f4 (patch) | |
tree | b65230bb4472882ff17a33ec7efeff546d2c9058 /src/map/pc.c | |
parent | 455f551f04efb21975b10e1f88c89e847948cd75 (diff) | |
download | hercules-fc558de14f8844cfbe7452413df523e97aa4c0f4.tar.gz hercules-fc558de14f8844cfbe7452413df523e97aa4c0f4.tar.bz2 hercules-fc558de14f8844cfbe7452413df523e97aa4c0f4.tar.xz hercules-fc558de14f8844cfbe7452413df523e97aa4c0f4.zip |
temp steal disable
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6379 54d463be-8e91-2dee-dedb-b68131a5f0ec
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 923149dd2..f5be5add1 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -2927,8 +2927,8 @@ int pc_steal_item(struct map_session_data *sd,struct block_list *bl) return 0;
md=(struct mob_data *)bl;
-
- if(md->state.steal_flag>battle_config.skill_steal_max_tries || status_get_mode(bl)&MD_BOSS || md->master_id ||
+//temp steal disable [Lupus]
+ if(1 || md->state.steal_flag>battle_config.skill_steal_max_tries || status_get_mode(bl)&MD_BOSS || md->master_id ||
(md->class_>=1324 && md->class_<1364) || // prevent stealing from treasure boxes [Valaris]
map[md->bl.m].flag.nomobloot || // check noloot map flag [Lorky]
md->sc.data[SC_STONE].timer != -1 || md->sc.data[SC_FREEZE].timer != -1 //status change check
|