mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-31 00:15:54 -04:00
15 lines
316 B
Plaintext
15 lines
316 B
Plaintext
// enclave cell
|
|
include library.force_rank;
|
|
include library.trace;
|
|
include library.utils;
|
|
include library.pet_lib;
|
|
|
|
trigger OnAboutToReceiveItem(obj_id srcContainer, obj_id transferer, obj_id item)
|
|
{
|
|
if(force_rank.checkCellPermission(item, self, false))
|
|
{
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
|
|
return SCRIPT_OVERRIDE;
|
|
} |