From a4d2aa1ee15851ef290d4a4284838e52199631a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Aguilera=20Puerto?= <6766154+Zumorica@users.noreply.github.com> Date: Fri, 24 Apr 2020 15:01:30 +0200 Subject: [PATCH] Rename newly added YAML files to respect naming guidelines (#845) --- .../Components/{Wrenchable.cs => WrenchableComponent.cs} | 2 +- .../Entities/Buildings/{computers => Computers}/arcade.yml | 0 .../Prototypes/Entities/Buildings/{barSign.yml => bar_sign.yml} | 0 .../Prototypes/Entities/{pottedPlants.yml => potted_plants.yml} | 0 4 files changed, 1 insertion(+), 1 deletion(-) rename Content.Server/GameObjects/Components/{Wrenchable.cs => WrenchableComponent.cs} (95%) rename Resources/Prototypes/Entities/Buildings/{computers => Computers}/arcade.yml (100%) rename Resources/Prototypes/Entities/Buildings/{barSign.yml => bar_sign.yml} (100%) rename Resources/Prototypes/Entities/{pottedPlants.yml => potted_plants.yml} (100%) diff --git a/Content.Server/GameObjects/Components/Wrenchable.cs b/Content.Server/GameObjects/Components/WrenchableComponent.cs similarity index 95% rename from Content.Server/GameObjects/Components/Wrenchable.cs rename to Content.Server/GameObjects/Components/WrenchableComponent.cs index a3994cf4b0..056a874900 100644 --- a/Content.Server/GameObjects/Components/Wrenchable.cs +++ b/Content.Server/GameObjects/Components/WrenchableComponent.cs @@ -9,7 +9,7 @@ using Robust.Shared.IoC; namespace Content.Server.GameObjects.Components { [RegisterComponent] - public class Wrenchable : Component, IAttackBy + public class WrenchableComponent : Component, IAttackBy { public override string Name => "Wrenchable"; private AudioSystem _audioSystem; diff --git a/Resources/Prototypes/Entities/Buildings/computers/arcade.yml b/Resources/Prototypes/Entities/Buildings/Computers/arcade.yml similarity index 100% rename from Resources/Prototypes/Entities/Buildings/computers/arcade.yml rename to Resources/Prototypes/Entities/Buildings/Computers/arcade.yml diff --git a/Resources/Prototypes/Entities/Buildings/barSign.yml b/Resources/Prototypes/Entities/Buildings/bar_sign.yml similarity index 100% rename from Resources/Prototypes/Entities/Buildings/barSign.yml rename to Resources/Prototypes/Entities/Buildings/bar_sign.yml diff --git a/Resources/Prototypes/Entities/pottedPlants.yml b/Resources/Prototypes/Entities/potted_plants.yml similarity index 100% rename from Resources/Prototypes/Entities/pottedPlants.yml rename to Resources/Prototypes/Entities/potted_plants.yml