From: SlamBamActionman <83650252+SlamBamActionman@users.noreply.github.com> Date: Sun, 11 May 2025 13:40:59 +0000 (+0200) Subject: Fix allowRotationMirror not appearing for the YAML linter (#37343) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=ca39645b691d56a44b80df73194302454b63fc84;p=space-station-14.git Fix allowRotationMirror not appearing for the YAML linter (#37343) Initial commit --- diff --git a/Content.Shared/Maps/ContentTileDefinition.cs b/Content.Shared/Maps/ContentTileDefinition.cs index f1b67fc6c8..edccd1729a 100644 --- a/Content.Shared/Maps/ContentTileDefinition.cs +++ b/Content.Shared/Maps/ContentTileDefinition.cs @@ -69,6 +69,11 @@ namespace Content.Shared.Maps [DataField("variants")] public byte Variants { get; set; } = 1; + /// + /// Allows the tile to be rotated/mirrored when placed on a grid. + /// + [DataField] public bool AllowRotationMirror { get; set; } = false; + /// /// This controls what variants the `variantize` command is allowed to use. ///