diff options
author | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-07-02 12:07:32 +0000 |
---|---|---|
committer | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-07-02 12:07:32 +0000 |
commit | 329d0adaf22491489d511982e57ae614dc1834c9 (patch) | |
tree | ba26b25451971071e38ea95a31ec646de76f83a8 /src/map/instance.h | |
parent | 179b9771be97e87168b39799bdbf82767d46fc45 (diff) | |
download | hercules-329d0adaf22491489d511982e57ae614dc1834c9.tar.gz hercules-329d0adaf22491489d511982e57ae614dc1834c9.tar.bz2 hercules-329d0adaf22491489d511982e57ae614dc1834c9.tar.xz hercules-329d0adaf22491489d511982e57ae614dc1834c9.zip |
* More instancing updates.
- Improved instance_id validity checking.
- Fixed instance name being copied with memcpy rather than safestrncpy (since r13901).
- Removed unused instance data field 'progress_timeoutval' (since r13901).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14879 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/instance.h')
-rw-r--r-- | src/map/instance.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/instance.h b/src/map/instance.h index a4735113a..e2b0354f9 100644 --- a/src/map/instance.h +++ b/src/map/instance.h @@ -24,7 +24,7 @@ struct s_instance { struct linkdb_node *ivar, *svar; // Instance Variable for scripts int progress_timer; - time_t progress_timeout, progress_timeoutval; + time_t progress_timeout; int idle_timer; time_t idle_timeout, idle_timeoutval; |