From 652f431ef45d7d3014b9d4024a5c62f59745b13e Mon Sep 17 00:00:00 2001 From: Kara D Date: Tue, 8 Feb 2022 14:58:20 -0700 Subject: [PATCH] Change decal spawn flag to +SPAWN instead of +MAPPING --- Content.Server/Decals/DecalSystem.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Server/Decals/DecalSystem.cs b/Content.Server/Decals/DecalSystem.cs index 629b7b1ded..91a998cf3c 100644 --- a/Content.Server/Decals/DecalSystem.cs +++ b/Content.Server/Decals/DecalSystem.cs @@ -86,7 +86,7 @@ namespace Content.Server.Decals return; // bad - if (!_adminManager.HasAdminFlag(session, AdminFlags.Mapping)) + if (!_adminManager.HasAdminFlag(session, AdminFlags.Spawn)) return; if (!ev.Coordinates.IsValid(EntityManager)) @@ -101,7 +101,7 @@ namespace Content.Server.Decals return; // bad - if (!_adminManager.HasAdminFlag(session, AdminFlags.Mapping)) + if (!_adminManager.HasAdminFlag(session, AdminFlags.Spawn)) return; if (!ev.Coordinates.IsValid(EntityManager))