diff options
author | toms <toms@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-05-06 09:21:13 +0000 |
---|---|---|
committer | toms <toms@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-05-06 09:21:13 +0000 |
commit | 60e14b0a38301d0013a795c1459e5573ee7d49dc (patch) | |
tree | 9f173591e05ec042700ed37444fd1192792177d5 | |
parent | 9b0f6db206ac0d5b9e905831050402c3ffed064c (diff) | |
download | hercules-60e14b0a38301d0013a795c1459e5573ee7d49dc.tar.gz hercules-60e14b0a38301d0013a795c1459e5573ee7d49dc.tar.bz2 hercules-60e14b0a38301d0013a795c1459e5573ee7d49dc.tar.xz hercules-60e14b0a38301d0013a795c1459e5573ee7d49dc.zip |
Removed an unused variable in script.c
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10491 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | Changelog-Trunk.txt | 1 | ||||
-rw-r--r-- | src/map/script.c | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 1749f1c30..dcdcfa21d 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. 2007/05/07 + * Removed an unused variable in script.c [Toms] * Fixed Converters not overwriting each other [Playtester] - thanks to scerez for the fix 2007/05/06 diff --git a/src/map/script.c b/src/map/script.c index fe102b923..9c46aa109 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -8773,7 +8773,6 @@ BUILDIN_FUNC(getwaitingroomstate) { struct npc_data *nd; struct chat_data *cd; - int val=0; int type; type = script_getnum(st,2); |