Can't exclude oil refineries and bbqsSolved

Hey! I have an issue with certain items not adding themselves to the exclusion list. I want players to be able to use these items to cook and remove what they added in but not pick them up without TC access. Most of these exclusions work great but I can't get oil refineries or bbqs to work. I've tried both item short names and IDs is there something I'm missing here? 

{
	"AdminCanLoot": true,
	"CanAuthorizeCupboard": true,
	"CanLootBackpack": false,
	"CanLootBackpackPlugin": false,
	"CanLootCorpse": false,
	"CanLootEntity": false,
	"CanLootPlayer": false,
	"CanOvenToggle": true,
	"CanPickup": true,
	"ExcludeEntities": [
		"mailbox.deployed",
		"furnace",
		"furnace.large",
		"campfire",
		"Barbeque",
		"water.catcher.large",
		"water.barrel",
		"water.catcher.small",
		"small.oil.refinery"
	],
	"UseCupboard": true,
	"UseCupboardInclude": [
		"storage"
	],
	"UseExcludeEntities": true,
	"UseFriendsAPI": true,
	"UseOnlyInCupboardRange": true,
	"UseOnlyInCupboardRangeInclude": [
		"storage"
	],
	"UsePermission": false,
	"UseTeams": true,
	"UseZoneManager": false,
	"ZoneID": [
		"12345678"
	],
	"ZoneManagerIncludeMode": false
}​

bbq.deployed for Barbeque and refinery_small_deployed for Small oil Refinery

The best way to get the prefab name of a setted item is to use the plugin EntityOwner.

Locked automatically