Removed old Loc.GetString() use instances (#4155)
Co-authored-by: DrSmugleaf <DrSmugleaf@users.noreply.github.com>
This commit is contained in:
@@ -9,15 +9,15 @@ namespace Content.Server.BarSign
|
||||
[Prototype("barSign")]
|
||||
public class BarSignPrototype : IPrototype
|
||||
{
|
||||
private string _description = "";
|
||||
private string _name = "";
|
||||
private string _description = string.Empty;
|
||||
private string _name = string.Empty;
|
||||
|
||||
[ViewVariables]
|
||||
[DataField("id", required: true)]
|
||||
public string ID { get; } = default!;
|
||||
|
||||
|
||||
[DataField("icon")] public string Icon { get; private set; } = "";
|
||||
[DataField("icon")] public string Icon { get; private set; } = string.Empty;
|
||||
|
||||
[DataField("name")]
|
||||
public string Name
|
||||
|
||||
Reference in New Issue
Block a user