Keycards instantly despawningFixed
plugin remove all key cards from server. 
"keycard_blue": 5,
"keycard_green": 5,
"keycard_red": 5,
i try change "5" to "0","-1","1200" but cards instantly despawn and server freeze after 5 min.

I've the exact same issue right now.

I'll be trying to look around for a solution and come back to update in case I'll find something

So while I don't know why this is an issue I do have a hack to offer up. I haven't done complete and thorough testing yet but so far everything seems to be working as expected.

Add this if/return statement inside this SetDespawnTime method...

private void SetDespawnTime(DroppedItem item)
{
  if (item.ShortPrefabName.Contains("keycard")) return;
​

and this version of the line inside this version of the method...
private void SetDespawnTime(DroppedItemContainer container)
{
  if (container.ShortPrefabName.Contains("keycard")) return;
​

 


Hope this helps.
Locked automatically