diff --git a/front/src/Phaser/Game/GameMap.ts b/front/src/Phaser/Game/GameMap.ts index 12da0514..110a29d6 100644 --- a/front/src/Phaser/Game/GameMap.ts +++ b/front/src/Phaser/Game/GameMap.ts @@ -29,6 +29,7 @@ export class GameMap { const newProps = this.getProperties(key); const oldProps = this.lastProperties; + this.lastProperties = newProps; // Let's compare the 2 maps: // First new properties vs oldProperties @@ -45,8 +46,6 @@ export class GameMap { this.trigger(oldPropName, oldPropValue, undefined, newProps); } } - - this.lastProperties = newProps; } public getCurrentProperties(): Map {