Move UnpoweredFlashlight to shared (#27449)
This commit is contained in:
@@ -68,9 +68,10 @@ public sealed class GetItemActionsEvent : EntityEventArgs
|
||||
AddAction(ref actionId, prototypeId, Provider);
|
||||
}
|
||||
|
||||
public void AddAction(EntityUid actionId)
|
||||
public void AddAction(EntityUid? actionId)
|
||||
{
|
||||
Actions.Add(actionId);
|
||||
if (actionId != null)
|
||||
Actions.Add(actionId.Value);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user