Fix build

This commit is contained in:
Vera Aguilera Puerto
2021-11-09 15:53:37 +01:00
parent 5b4c813c6d
commit 4ca6f6ff69
2 changed files with 2 additions and 2 deletions

View File

@@ -106,7 +106,7 @@ namespace Content.Server.Administration
verb.Text = Loc.GetString("make-sentient-verb-get-data-text");
verb.Category = VerbCategory.Debug;
verb.IconTexture = "/Textures/Interface/VerbIcons/sentient.svg.192dpi.png";
verb.Act = () => MakeSentientCommand.MakeSentient(args.Target);
verb.Act = () => MakeSentientCommand.MakeSentient(args.Target.Uid, EntityManager);
args.Verbs.Add(verb);
}