You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
833 B
28 lines
833 B
#if 0
|
|
//--------------------------------------------//
|
|
// 本文件为自动生成,请勿编辑 //
|
|
// thanks to 最萌小汐 //
|
|
//--------------------------------------------//
|
|
#endif
|
|
#ifdef USE_BJ_ANTI_LEAK
|
|
#ifndef YDWETriggerActionUnitRescuedBJNullIncluded
|
|
#define YDWETriggerActionUnitRescuedBJNullIncluded
|
|
|
|
|
|
library YDWETriggerActionUnitRescuedBJNull
|
|
|
|
function YDWETriggerActionUnitRescuedBJNull takes nothing returns nothing
|
|
local unit theUnit = GetTriggerUnit()
|
|
|
|
if IsUnitType(theUnit, UNIT_TYPE_STRUCTURE) then
|
|
call RescueUnitBJ(theUnit, GetOwningPlayer(GetRescuer()), bj_rescueChangeColorBldg)
|
|
else
|
|
call RescueUnitBJ(theUnit, GetOwningPlayer(GetRescuer()), bj_rescueChangeColorUnit)
|
|
endif
|
|
set theUnit = null
|
|
endfunction
|
|
|
|
endlibrary
|
|
|
|
#endif
|
|
#endif
|
|
|