summaryrefslogtreecommitdiff
path: root/src/map/atcommand.h
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-03-20 16:02:22 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-03-20 16:02:22 +0000
commit4f06f94e70e92904a8d86be32de0b1dfb6c35633 (patch)
treeef36652e967a87f3d0fdbaa61d910e4b464516a2 /src/map/atcommand.h
parentf3e0608b8871675ec21c8da90ea3ca545f54e017 (diff)
downloadhercules-4f06f94e70e92904a8d86be32de0b1dfb6c35633.tar.gz
hercules-4f06f94e70e92904a8d86be32de0b1dfb6c35633.tar.bz2
hercules-4f06f94e70e92904a8d86be32de0b1dfb6c35633.tar.xz
hercules-4f06f94e70e92904a8d86be32de0b1dfb6c35633.zip
- getpetinfo 5 will now return the pet's rename flag.
- Autoloot will now only work on items dropped a certain distance from the player. The distance is defined by AUTOLOOT_DISTANCE in atcommand.h and defaults to AREA_SIZE. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10039 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.h')
-rw-r--r--src/map/atcommand.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/map/atcommand.h b/src/map/atcommand.h
index dfcbd2de7..d18e8e923 100644
--- a/src/map/atcommand.h
+++ b/src/map/atcommand.h
@@ -4,6 +4,13 @@
#ifndef _ATCOMMAND_H_
#define _ATCOMMAND_H_
+//This is the distance at which @autoloot works,
+//if the item drops farther from the player than this,
+//it will not be autolooted. [Skotlex]
+#ifndef AUTOLOOT_DISTANCE
+ #define AUTOLOOT_DISTANCE AREA_SIZE
+#endif
+
enum AtCommandType {
AtCommand_None = -1,
AtCommand_Broadcast = 0,