private void OnHandUnequipped(EntityUid uid, ItemActionsComponent component, UnequippedHandEvent args)
 {
     component.UnequippedHand();
 }
Beispiel #2
0
 public ItemActionAttempt(ItemActionPrototype action, IEntity item, ItemActionsComponent itemActions)
 {
     _action      = action;
     _item        = item;
     _itemActions = itemActions;
 }
 private void OnHandEquipped(EntityUid uid, ItemActionsComponent component, EquippedHandEvent args)
 {
     component.EquippedHand(args.User, args.Hand);
 }