diff --git a/InfChests/InfChests.cs b/InfChests/InfChests.cs index 44819f9..a5be524 100644 --- a/InfChests/InfChests.cs +++ b/InfChests/InfChests.cs @@ -379,7 +379,7 @@ private bool getChestContents(int index, short tilex, short tiley) return true; } - if (playerData.Values.Any(p => p.dbid == chest.id)) + if (chest.refillTime != 0 && playerData.Values.Any(p => p.dbid == chest.id)) { player.SendErrorMessage("This chest is in use."); playerData[index].action = chestAction.none;