From cbbfb52ca766cb3b9e8cb2a6e9cf04f42d356ab1 Mon Sep 17 00:00:00 2001 From: Shauren Date: Tue, 8 Mar 2011 17:48:09 +0100 Subject: Scripts/Ulduar: Use proper parameter type in DoAction (Assembly of Iron) --- .../scripts/Northrend/Ulduar/ulduar/boss_assembly_of_iron.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/server/scripts') diff --git a/src/server/scripts/Northrend/Ulduar/ulduar/boss_assembly_of_iron.cpp b/src/server/scripts/Northrend/Ulduar/ulduar/boss_assembly_of_iron.cpp index a78d480b658..994a7c8b0d9 100644 --- a/src/server/scripts/Northrend/Ulduar/ulduar/boss_assembly_of_iron.cpp +++ b/src/server/scripts/Northrend/Ulduar/ulduar/boss_assembly_of_iron.cpp @@ -235,7 +235,7 @@ public: DoAction(EVENT_UPDATEPHASE); } - void DoAction(uint32 action) + void DoAction(const int32 action) { switch (action) { @@ -381,7 +381,7 @@ public: DoAction(EVENT_UPDATEPHASE); } - void DoAction(uint32 action) + void DoAction(const int32 action) { switch (action) { @@ -622,7 +622,7 @@ public: DoAction(EVENT_UPDATEPHASE); } - void DoAction(uint32 action) + void DoAction(const int32 action) { switch (action) { -- cgit v1.2.3