summaryrefslogtreecommitdiff
path: root/src/map/instance.h
diff options
context:
space:
mode:
authorepoque11 <epoque11@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-04-28 22:15:18 +0000
committerepoque11 <epoque11@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-04-28 22:15:18 +0000
commitb6a5ac44371ff714d18a04f3acbe29955ace07aa (patch)
treeea97e1dc9254a40f2b6eb0bdac6418c024fda20d /src/map/instance.h
parent4f2de079cdabfa86b609a5ad15df3a4c1c58437b (diff)
downloadhercules-b6a5ac44371ff714d18a04f3acbe29955ace07aa.tar.gz
hercules-b6a5ac44371ff714d18a04f3acbe29955ace07aa.tar.bz2
hercules-b6a5ac44371ff714d18a04f3acbe29955ace07aa.tar.xz
hercules-b6a5ac44371ff714d18a04f3acbe29955ace07aa.zip
- Fixed an issue with the instance variable storage system never being initialised (since unknown revision)
- Combined both string and integer instance variables into a single DBMap* structure - Fixed a missing new-line at the end of src/common/conf.h causing warnings git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15998 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/instance.h')
-rw-r--r--src/map/instance.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/instance.h b/src/map/instance.h
index e918aa516..f8f7387f7 100644
--- a/src/map/instance.h
+++ b/src/map/instance.h
@@ -21,7 +21,7 @@ struct s_instance {
int num_map;
int users;
- struct DBMap *ivar, *svar; // Instance Variable for scripts
+ struct DBMap* vars; // Instance Variable for scripts
int progress_timer;
time_t progress_timeout;