Sort scanner "eject" verb first (#10932)

This commit is contained in:
Kevin Zheng
2022-08-29 22:29:50 -07:00
committed by GitHub
parent 4813a719ba
commit 808677c117

View File

@@ -94,6 +94,7 @@ namespace Content.Server.Medical
verb.Act = () => EjectBody(uid, component);
verb.Category = VerbCategory.Eject;
verb.Text = Loc.GetString("medical-scanner-verb-noun-occupant");
verb.Priority = 1; // Promote to top to make ejecting the ALT-click action
args.Verbs.Add(verb);
}