DayZ 1.27
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено

◆ CanPutInCargo() [3/3]

override bool Container_Base::CanPutInCargo ( EntityAI parent)
inlineprivate

См. определение в файле EN5C_Bear_ColorBase.c строка 3

4 {
5 if( !super.CanPutInCargo(parent) ) {return false;}
6 //better use something like super.GetName()
7 if ( parent && (parent.IsKindOf("Bear_ColorBase")) )
8 {
9 return false;
10 }
11
12 return true;
13 }