mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-20 09:17:36 +01:00
Scripts/Ulduar: Use proper parameter type in DoAction (Assembly of Iron)
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user