Add suit storage (#7531)

This commit is contained in:
ZeroDayDaemon
2022-04-14 14:41:26 -04:00
committed by GitHub
parent a57e0ca199
commit d60392760c
3 changed files with 17 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
using System;
using System;
using Robust.Shared.Serialization;
namespace Content.Shared.Inventory;
@@ -26,5 +26,6 @@ public enum SlotFlags
POCKET = 1 << 12,
LEGS = 1 << 13,
FEET = 1 << 14,
SUITSTORAGE = 1 << 15,
All = ~NONE,
}