aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2022-07-13 20:51:20 +0200
committerShauren <shauren.trinity@gmail.com>2022-07-13 20:51:20 +0200
commitf4951f9031cf2c015474c80f5fb0172f19b31acb (patch)
tree60b0bf5f9aa657ff868db4171f86a33869ee8abd
parent55436117ba198b1588815ed37d21a1603940d04a (diff)
Core/DataStores: Named WorldStateExpression function 38
-rw-r--r--src/server/game/Conditions/ConditionMgr.cpp2
-rw-r--r--src/server/game/DataStores/DBCEnums.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/Conditions/ConditionMgr.cpp b/src/server/game/Conditions/ConditionMgr.cpp
index 080dd528b62..bdb20ae9ba8 100644
--- a/src/server/game/Conditions/ConditionMgr.cpp
+++ b/src/server/game/Conditions/ConditionMgr.cpp
@@ -3591,7 +3591,7 @@ static int32(* const WorldStateExpressionFunctions[WSE_FUNCTION_MAX])(Player con
return 0;
},
- // WSE_FUNCTION_UNK38
+ // WSE_FUNCTION_TIME_EVENT_PASSED
[](Player const* /*player*/, uint32 /*arg1*/, uint32 /*arg2*/) -> int32
{
return 0;
diff --git a/src/server/game/DataStores/DBCEnums.h b/src/server/game/DataStores/DBCEnums.h
index ca785aff1ad..88561e25be2 100644
--- a/src/server/game/DataStores/DBCEnums.h
+++ b/src/server/game/DataStores/DBCEnums.h
@@ -2007,7 +2007,7 @@ enum WorldStateExpressionFunctions
WSE_FUNCTION_UNK35,
WSE_FUNCTION_UNK36,
WSE_FUNCTION_UI_WIDGET_DATA,
- WSE_FUNCTION_UNK38,
+ WSE_FUNCTION_TIME_EVENT_PASSED,
WSE_FUNCTION_MAX,
};