Fix pointing in mapping mode (#7624)
This commit is contained in:
@@ -219,7 +219,7 @@ namespace Content.Server.Pointing.EntitySystems
|
|||||||
|
|
||||||
public override void Update(float frameTime)
|
public override void Update(float frameTime)
|
||||||
{
|
{
|
||||||
foreach (var component in EntityManager.EntityQuery<PointingArrowComponent>())
|
foreach (var component in EntityManager.EntityQuery<PointingArrowComponent>(true))
|
||||||
{
|
{
|
||||||
component.Update(frameTime);
|
component.Update(frameTime);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
- type: entity
|
- type: entity
|
||||||
name: pointing arrow
|
name: pointing arrow
|
||||||
id: pointingarrow
|
id: pointingarrow
|
||||||
|
save: false
|
||||||
components:
|
components:
|
||||||
- type: Tag
|
- type: Tag
|
||||||
tags:
|
tags:
|
||||||
|
|||||||
Reference in New Issue
Block a user