Change localize field to be readonly. (#432)

This commit is contained in:
ZelteHonor
2019-11-12 16:39:18 -05:00
committed by Pieter-Jan Briers
parent 774f5f0db7
commit 62b31eee00

View File

@@ -22,7 +22,7 @@ namespace Content.Client.Chat
private readonly IList<string> _inputHistory = new List<string>();
private ILocalizationManager localize = IoCManager.Resolve<ILocalizationManager>();
private readonly ILocalizationManager localize = IoCManager.Resolve<ILocalizationManager>();
public LineEdit Input { get; private set; }
public OutputPanel Contents { get; }