Make ActionsSystem.UpdateAction public (#30056)
This commit is contained in:
@@ -107,7 +107,7 @@ namespace Content.Client.Actions
|
|||||||
UpdateAction(uid, component);
|
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))
|
if (!ResolveActionData(actionId, ref action))
|
||||||
return;
|
return;
|
||||||
|
|||||||
@@ -237,7 +237,7 @@ public abstract class SharedActionsSystem : EntitySystem
|
|||||||
}
|
}
|
||||||
|
|
||||||
#region ComponentStateManagement
|
#region ComponentStateManagement
|
||||||
protected virtual void UpdateAction(EntityUid? actionId, BaseActionComponent? action = null)
|
public virtual void UpdateAction(EntityUid? actionId, BaseActionComponent? action = null)
|
||||||
{
|
{
|
||||||
// See client-side code.
|
// See client-side code.
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user