private void OnStartup(EntityUid uid, PolymorphableComponent component, ComponentStartup args)
 {
     if (component.InnatePolymorphs != null)
     {
         foreach (var morph in component.InnatePolymorphs)
         {
             CreatePolymorphAction(morph, uid);
         }
     }
 }
 private void OnPolymorphActionEvent(EntityUid uid, PolymorphableComponent component, PolymorphActionEvent args)
 {
     PolymorphEntity(uid, args.Prototype);
 }