aboutsummaryrefslogtreecommitdiff
path: root/src/server/scripts/EasternKingdoms
diff options
context:
space:
mode:
authorjoschiwald <joschiwald@online.de>2013-09-25 16:37:43 +0200
committerjoschiwald <joschiwald@online.de>2013-09-25 16:37:43 +0200
commita0c637f52a6a0413bc2c70cec949bd5660f39611 (patch)
treea6258568800c6d119aee7b421af4c26c4e192d0f /src/server/scripts/EasternKingdoms
parent1887fa28a0fe724329a713e5cf395a641cae161c (diff)
Core/Scripts: added some OVERRIDEs
Diffstat (limited to 'src/server/scripts/EasternKingdoms')
-rw-r--r--src/server/scripts/EasternKingdoms/MagistersTerrace/instance_magisters_terrace.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/server/scripts/EasternKingdoms/MagistersTerrace/instance_magisters_terrace.cpp b/src/server/scripts/EasternKingdoms/MagistersTerrace/instance_magisters_terrace.cpp
index ba3526bfa11..54323b5c133 100644
--- a/src/server/scripts/EasternKingdoms/MagistersTerrace/instance_magisters_terrace.cpp
+++ b/src/server/scripts/EasternKingdoms/MagistersTerrace/instance_magisters_terrace.cpp
@@ -60,11 +60,6 @@ class instance_magisters_terrace : public InstanceMapScript
public:
instance_magisters_terrace() : InstanceMapScript("instance_magisters_terrace", 585) { }
- InstanceScript* GetInstanceScript(InstanceMap* map) const
- {
- return new instance_magisters_terrace_InstanceMapScript(map);
- }
-
struct instance_magisters_terrace_InstanceMapScript : public InstanceScript
{
instance_magisters_terrace_InstanceMapScript(Map* map) : InstanceScript(map) {}
@@ -311,6 +306,11 @@ public:
felCristalIndex = value;
}
};
+
+ InstanceScript* GetInstanceScript(InstanceMap* map) const OVERRIDE
+ {
+ return new instance_magisters_terrace_InstanceMapScript(map);
+ }
};
void AddSC_instance_magisters_terrace()