diff --git a/packages-user/client-modules/src/render/map/extension/hero.ts b/packages-user/client-modules/src/render/map/extension/hero.ts index 8da4fd2..19b4a85 100644 --- a/packages-user/client-modules/src/render/map/extension/hero.ts +++ b/packages-user/client-modules/src/render/map/extension/hero.ts @@ -298,16 +298,11 @@ export class MapHeroRenderer implements IMapHeroRenderer { this.entities.forEach(v => this.endEntityMoving(v)); } - stopMove(stopFollower: boolean): void { - if (stopFollower) { - this.entities.forEach(v => { - v.block.endMoving(); - this.endEntityMoving(v); - }); - } else { - this.heroEntity.block.endMoving(); - this.endEntityMoving(this.heroEntity); - } + stopMove(): void { + this.entities.forEach(v => { + v.block.endMoving(); + this.endEntityMoving(v); + }); } async move(direction: FaceDirection, time: number): Promise {