mirror of
https://bitbucket.org/seefoe/dsrc.git
synced 2026-08-01 02:16:04 -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;
|
|
} |