REO-EE/_module/nss/trash_can.nss
Jaysyn904 f82740bbbd Initial commit
Initial commit
2024-02-22 13:22:03 -05:00

13 lines
251 B
Plaintext

// Simply destroy any item placed inside the container.
void main()
{
object oItem = GetInventoryDisturbItem();
int iType = GetInventoryDisturbType();
if(iType == INVENTORY_DISTURB_TYPE_ADDED)
{
DestroyObject(oItem);
}
}