0
0
mirror of https://gitlab.com/YuukiPS/GC-Resources.git synced 2025-04-29 09:35:48 +00:00
GC-Resources/Resources/Scripts/Common/V2_4/Monster_CombatEnd_Handle.lua
KingRainbow44 b8cde25332
Revert "The Great De-Local'ifying of Lua Scripts (pt. 3)"
This reverts commit aa45c07369da944f31842aaadf87884dc319c8b1.
2023-08-29 21:28:58 -04:00

9 lines
239 B
Lua
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

--用于处理怪物脱战后的处理需要通知group重置。
function SLC_CombatEnd(context)
local g_id = ScriptLib.GetContextGroupId(context)
ScriptLib.RefreshGroup(context, {group_id = g_id, suite = 1})
return 0
end