Make clown clumsy. (#1481)

Co-authored-by: scuffedjays <yetanotherscuffed@gmail.com>
This commit is contained in:
Pieter-Jan Briers
2020-07-26 14:08:09 +02:00
committed by GitHub
parent fbbe43fff8
commit 2bd318e83f
9 changed files with 141 additions and 34 deletions

View File

@@ -0,0 +1,13 @@
using Robust.Shared.GameObjects;
namespace Content.Server.GameObjects.Components.Mobs
{
/// <summary>
/// A simple clumsy tag-component.
/// </summary>
[RegisterComponent]
public class ClumsyComponent : Component
{
public override string Name => "Clumsy";
}
}