Suspicion on the Space Station gamemode (#849)
This commit is contained in:
committed by
GitHub
parent
ccbe4bc23f
commit
5d7514674e
@@ -11,8 +11,9 @@ namespace Content.Server.Mobs.Roles
|
||||
public JobPrototype Prototype { get; }
|
||||
|
||||
public override string Name { get; }
|
||||
public override bool Antag => false;
|
||||
|
||||
public String StartingGear => Prototype.StartingGear;
|
||||
public string StartingGear => Prototype.StartingGear;
|
||||
|
||||
public Job(Mind mind, JobPrototype jobPrototype) : base(mind)
|
||||
{
|
||||
@@ -25,9 +26,7 @@ namespace Content.Server.Mobs.Roles
|
||||
base.Greet();
|
||||
|
||||
var chat = IoCManager.Resolve<IChatManager>();
|
||||
chat.DispatchServerMessage(
|
||||
Mind.Session,
|
||||
String.Format("You're a new {0}. Do your best!", Name));
|
||||
chat.DispatchServerMessage(Mind.Session, $"You're a new {Name}. Do your best!");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user