Make ActionsSystem.UpdateAction public (#30056)
This commit is contained in:
parent
a2b021dffb
commit
78f3ffc2a4
2 changed files with 2 additions and 2 deletions
|
|
@ -107,7 +107,7 @@ namespace Content.Client.Actions
|
|||
UpdateAction(uid, component);
|
||||
}
|
||||
|
||||
protected override void UpdateAction(EntityUid? actionId, BaseActionComponent? action = null)
|
||||
public override void UpdateAction(EntityUid? actionId, BaseActionComponent? action = null)
|
||||
{
|
||||
if (!ResolveActionData(actionId, ref action))
|
||||
return;
|
||||
|
|
|
|||
|
|
@ -237,7 +237,7 @@ public abstract class SharedActionsSystem : EntitySystem
|
|||
}
|
||||
|
||||
#region ComponentStateManagement
|
||||
protected virtual void UpdateAction(EntityUid? actionId, BaseActionComponent? action = null)
|
||||
public virtual void UpdateAction(EntityUid? actionId, BaseActionComponent? action = null)
|
||||
{
|
||||
// See client-side code.
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue