* Fix paper system late localization * IS THIS WHAT YOU WANT * well I guess this is happening now * fix the BUI * did that even do anything before? * again with the escapeformatting... * Dirtying * Move dirty to function * Rename PaperSystem to PaperVisualizerSystem * Fix namespace * how many namespace changes must I suffer through * SetContent is for Setting Content * minor shuffling * review --------- Co-authored-by: plykiya <plykiya@protonmail.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
13 lines
289 B
C#
13 lines
289 B
C#
using Content.Shared.Paper;
|
|
|
|
namespace Content.Shared.Paper;
|
|
|
|
/// <summary>
|
|
/// Activates the item when used to write on paper, as if Z was pressed.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
[Access(typeof(PaperSystem))]
|
|
public sealed partial class ActivateOnPaperOpenedComponent : Component
|
|
{
|
|
}
|