diff options
author | Shauren <shauren.trinity@gmail.com> | 2011-03-08 17:48:09 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2011-03-08 17:48:09 +0100 |
commit | cbbfb52ca766cb3b9e8cb2a6e9cf04f42d356ab1 (patch) | |
tree | 1849d805719ac769ee10a63e2ae3475948527ebe /src | |
parent | ca0adc6a75f4de359df237da7355bf0efa5da7a1 (diff) |
Scripts/Ulduar: Use proper parameter type in DoAction (Assembly of Iron)
Diffstat (limited to 'src')
-rw-r--r-- | src/server/scripts/Northrend/Ulduar/ulduar/boss_assembly_of_iron.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
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) { |