From cc3dc433b959d848d1c370e3aa13632d622f5cd5 Mon Sep 17 00:00:00 2001 From: Zido Date: Fri, 5 May 2006 04:28:14 +0000 Subject: [PATCH] - Read changelog. git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@6484 54d463be-8e91-2dee-dedb-b68131a5f0ec --- Changelog-Trunk.txt | 1 + src/map/atcommand.c | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 36725f1d2a..f67483d183 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -4,6 +4,7 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. 2006/05/04 + * Some people think its sexy to declare variables after blocks of code. Fixed. [Zido] * Fixed a possible infinite loop in skill_clear_unit_group [Skotlex] * Some clean-ups in the mob_ai [Skotlex] * Improved atcommand autoloot, now displays droprate in percents and notices diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 6655ac8621..115d4bd06d 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -7737,6 +7737,9 @@ atcommand_changeleader( */ int atcommand_autoloot(const int fd, struct map_session_data* sd, const char* command, const char* message) { + // autoloot command with value + unsigned int rate; + nullpo_retr(-1, sd); // autoloot command without value @@ -7757,7 +7760,7 @@ int atcommand_autoloot(const int fd, struct map_session_data* sd, const char* co } // autoloot command with value - unsigned int rate; + //unsigned int rate; // Moved to top due to decleration error after executional block. [Zido] // get maximum droprate limit rate = atoi(message) * 100;