diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-04-19 18:44:01 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-04-19 18:44:01 +0000 |
commit | e3cf8d5104f6fa28e1af240ac9a98f25a5552e27 (patch) | |
tree | e37fa082ab8405c822e426042747a170e1709132 /src/map/atcommand.c | |
parent | fae3410f42f3a2c4c294478c775f936881f31231 (diff) | |
download | hercules-e3cf8d5104f6fa28e1af240ac9a98f25a5552e27.tar.gz hercules-e3cf8d5104f6fa28e1af240ac9a98f25a5552e27.tar.bz2 hercules-e3cf8d5104f6fa28e1af240ac9a98f25a5552e27.tar.xz hercules-e3cf8d5104f6fa28e1af240ac9a98f25a5552e27.zip |
- Removed the max cap of autoloot so you are now allowed to set autoloot values above 100.
- Initialized w1/w2/w3/w4 before reading each npc line to avoid sending unread values to the parsers (for example, if w4 has a value in one line and none on the next, it will be parsed with the previous value of w4 on the following lines)
- Updated getpartymember to receive an int which specifies what to retrieve. 0: Character names (array $@partymembername$), 1 character char ids (array $@partymembercid), 2 character account ids (array $@partynameaid). By default it returns party member names.
- Updated script_commands.txt with the updated behaviour of getpartymember.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6182 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index d6389639f..adaa5c117 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -7711,8 +7711,7 @@ atcommand_autoloot( drate = atof(message);
rate = (int)(drate*100);
}
- if (rate > 10000) rate = 10000;
- else if (rate < 0) rate = 0;
+ if (rate < 0) rate = 0;
sd->state.autoloot = rate;
if (sd->state.autoloot) {
|