azerothcore / mod-eluna

Eluna Lua Engine © for WoW Emulators
https://elunaluaengine.github.io/
GNU General Public License v3.0
96 stars 126 forks source link

Update OnCommand for core hook changes. #181

Closed AnchyDev closed 2 months ago

AnchyDev commented 2 months ago

If https://github.com/azerothcore/azerothcore-wotlk/pull/19081 merges then this change will be required.

Testable with this Lua script:

local PLAYER_EVENT_ON_COMMAND = 42

RegisterPlayerEvent(PLAYER_EVENT_ON_COMMAND, function(event, player, command)
    player:SendBroadcastMessage("You ran command " .. command)
end)