diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-28 16:42:32 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-28 16:42:32 +0000 |
commit | 2fbedc46150f0b296d165ff58defd3a5e6a7deb9 (patch) | |
tree | dfb2d83b6246cdea6f645af0a05e5ba365345105 /src/map/pc.c | |
parent | e07b2da8d90f955dbe01737e9bfdb73ddaa3bd83 (diff) | |
download | hercules-2fbedc46150f0b296d165ff58defd3a5e6a7deb9.tar.gz hercules-2fbedc46150f0b296d165ff58defd3a5e6a7deb9.tar.bz2 hercules-2fbedc46150f0b296d165ff58defd3a5e6a7deb9.tar.xz hercules-2fbedc46150f0b296d165ff58defd3a5e6a7deb9.zip |
- Added inf2 4096 (INF2_ALLOW_ENEMY) which is to be used in conjunction with INF2_PARTY_ONLY/INF2_GUILD_ONLY when said skill should ALSO be allowed to be used on enemies.
- Updated Soul Change to use inf2 4096 (INF2_ALLOW_ENEMY).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7376 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index 63d097b14..fc7e5c7a8 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -6358,7 +6358,7 @@ int pc_checkitem(struct map_session_data *sd) continue;
if( battle_config.item_check && !itemdb_available(id) ){
if(battle_config.error_log)
- ShowWarning("illeagal item id %d in %d[%s] cart.\n",id,sd->bl.id,sd->status.name);
+ ShowWarning("illegal item id %d in %d[%s] cart.\n",id,sd->bl.id,sd->status.name);
pc_cart_delitem(sd,i,sd->status.cart[i].amount,1);
continue;
}
|