We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06d5fce commit c00aee9Copy full SHA for c00aee9
Content.Server/_Emberfall/Engraving/EngravableSystem.cs
@@ -28,7 +28,7 @@ private void AddEngraveVerb(Entity<EngravableComponent> ent, ref GetVerbsEvent<A
28
return;
29
30
// We need an actor to give the verb.
31
- if (!EntityManager.TryGetComponent(args.User, out ActorComponent? actor))
+ if (!TryComp<ActorComponent>(args.User, out var actor))
32
33
34
// Make sure ghosts can't engrave stuff.
0 commit comments