aboutsummaryrefslogtreecommitdiff
path: root/src/server/scripts/EasternKingdoms
diff options
context:
space:
mode:
authorSpp- <spp@jorge.gr>2011-08-30 13:46:36 +0200
committerSpp- <spp@jorge.gr>2011-08-30 13:46:36 +0200
commitaa85553bfd540084802d118ff6ef2062a88ed452 (patch)
tree6f3dc82f53ccafafe7468ef6694751bf7d0b4cc8 /src/server/scripts/EasternKingdoms
parentfcf58e706280f0b0029908d9dce2e9c744227830 (diff)
Core: Crash fix (TemporarySummon), remove some warnings and some other minor changes
- "const uint64" and "uint64 const" --> uint64 - Add some info in LFGDungeonEntry - Move some definitions from ".h" files and move to ".cpp"
Diffstat (limited to 'src/server/scripts/EasternKingdoms')
-rw-r--r--src/server/scripts/EasternKingdoms/ScarletEnclave/chapter1.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter1.cpp b/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter1.cpp
index 493e4b8f28e..7faa8df44bf 100644
--- a/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter1.cpp
+++ b/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter1.cpp
@@ -297,7 +297,7 @@ public:
uint64 prisonerGUID;
- void SetGUID(const uint64 guid, int32 /*id*/)
+ void SetGUID(uint64 guid, int32 /*id*/)
{
if (!prisonerGUID)
prisonerGUID = guid;
@@ -883,7 +883,7 @@ public:
uint64 minerGUID;
- void SetGUID(const uint64 guid, int32 /*id*/)
+ void SetGUID(uint64 guid, int32 /*id*/)
{
minerGUID = guid;
}