mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-20 11:47:48 +00:00
14 lines
223 B
Lua
14 lines
223 B
Lua
![]() |
--[[
|
||
|
|
||
|
TradeOfferCommand Script
|
||
|
|
||
|
Handles what happens a player cancels a trade
|
||
|
|
||
|
--]]
|
||
|
|
||
|
function onEventStarted(player, actor, triggerName, commandId, result)
|
||
|
|
||
|
GetWorldManager():CancelTrade(player);
|
||
|
player:EndEvent();
|
||
|
|
||
|
end
|