diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-01-10 13:10:13 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-01-10 13:10:13 +0000 |
commit | a2185d8ccf800a0d5412a19404218c7a99921fdf (patch) | |
tree | 2e74eba192ca8b111ac15653aa2a4d90eee69195 /src/map/atcommand.c | |
parent | aae1026c0336f9bd280ac0d5cc8d523004adad21 (diff) | |
download | hercules-a2185d8ccf800a0d5412a19404218c7a99921fdf.tar.gz hercules-a2185d8ccf800a0d5412a19404218c7a99921fdf.tar.bz2 hercules-a2185d8ccf800a0d5412a19404218c7a99921fdf.tar.xz hercules-a2185d8ccf800a0d5412a19404218c7a99921fdf.zip |
- Removed 'skill_steal_type' from skill.conf as said config no longer exists.
- Corrected @slaveclone/@clone behaving as @evilclone when you change the @ symbol.
- Modified SC_ARMOR_ELEMENT so it grants elemental resist as if it they were card granted bonuses.
- fixed a SA_DISPELL crash when casted on an object with no status changes.
- Adjusted the autospell code so that it does not relies on card_id == 0 for subtracting rates.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12041 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 07dc0d3a4..cc6e21874 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -7971,9 +7971,9 @@ int atcommand_clone(const int fd, struct map_session_data* sd, const char* comma return 0; } - if (strcmpi(command, "@clone") == 0) + if (strcmpi(command+1, "clone") == 0) flag = 1; - else if (strcmpi(command, "@slaveclone") == 0) { + else if (strcmpi(command+1, "slaveclone") == 0) { flag = 2; master = sd->bl.id; if (battle_config.atc_slave_clone_limit |