mirror of
https://gitlab.com/YuukiPS/GC-Resources.git
synced 2025-04-29 09:35:48 +00:00
9 lines
239 B
Lua
9 lines
239 B
Lua
|
||
--用于处理怪物脱战后的处理,需要通知group重置。
|
||
|
||
function SLC_CombatEnd(context)
|
||
|
||
local g_id = ScriptLib.GetContextGroupId(context)
|
||
ScriptLib.RefreshGroup(context, {group_id = g_id, suite = 1})
|
||
return 0
|
||
end |