Explorar o código

Also unset the placed!

Reddo %!s(int64=5) %!d(string=hai) anos
pai
achega
1f3ed948ad
Modificáronse 1 ficheiros con 2 adicións e 0 borrados
  1. 2 0
      app/World/Classes/RandomDungeons/RoomRandomMap.ts

+ 2 - 0
app/World/Classes/RandomDungeons/RoomRandomMap.ts

@@ -133,6 +133,8 @@ class RoomRandomMap {
 
     public unmap (x : number, y : number) {
         if (this.positionTable[x] != undefined && this.positionTable[x][y] != undefined) {
+            let room = this.positionTable[x][y];
+            room.placed = false;
             this.roomMap.delete(this.positionTable[x][y]);
             delete (this.positionTable[x][y]);
             this.rooms--;