diff --git a/src/graphics/train/Train.ts b/src/graphics/train/Train.ts index 8fea1cf..411d014 100644 --- a/src/graphics/train/Train.ts +++ b/src/graphics/train/Train.ts @@ -173,7 +173,7 @@ export class TrainHead extends Container { arrow.beginFill(aColor, 1); arrow.drawPolygon(arrowPoint); arrow.endFill(); - if (states.dynamicState.speed > 0) { + if (states.dynamicState.speed != 0) { this.arrow.visible = true; } else { this.arrow.visible = false;