Fixed wires disconnecting when dragging them outside the sub, larger range of wifi channels

This commit is contained in:
Regalis
2016-07-18 20:35:38 +03:00
parent a4ad91da44
commit c4cc19ea4f
2 changed files with 2 additions and 2 deletions
@@ -27,7 +27,7 @@ namespace Barotrauma.Items.Components
get { return channel; }
set
{
channel = MathHelper.Clamp(value, 0, 100);
channel = MathHelper.Clamp(value, 0, 10000);
}
}