From 88eabef8af4c342c373780de601c804541bf4233 Mon Sep 17 00:00:00 2001 From: Joonas Rikkonen Date: Tue, 24 Apr 2018 20:58:42 +0300 Subject: [PATCH] Made characterusable default to false (as it did before 91d6c7b) --- .../BarotraumaShared/Source/Items/Components/ItemComponent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Barotrauma/BarotraumaShared/Source/Items/Components/ItemComponent.cs b/Barotrauma/BarotraumaShared/Source/Items/Components/ItemComponent.cs index ba87a5f77..9bd033a11 100644 --- a/Barotrauma/BarotraumaShared/Source/Items/Components/ItemComponent.cs +++ b/Barotrauma/BarotraumaShared/Source/Items/Components/ItemComponent.cs @@ -143,7 +143,7 @@ namespace Barotrauma.Items.Components } //Can the "Use" action be triggered by characters or just other items/statuseffects - [Serialize(true, false)] + [Serialize(false, false)] public bool CharacterUsable { get { return characterUsable; }