mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
14 lines
286 B
Lua
14 lines
286 B
Lua
--[[
|
|
|
|
LinkshellInviteCancelCommand Script
|
|
|
|
Handles what happens when you cancel an invite to a linkshell
|
|
|
|
--]]
|
|
|
|
function onEventStarted(player, actor, triggerName, arg1, arg2, arg3, arg4, actorId)
|
|
|
|
GetWorldManager():RequestWorldLinkshellCancelInvite(player);
|
|
player:EndEvent();
|
|
|
|
end |