瀏覽代碼

Also unset the placed!

Reddo 5 年之前
父節點
當前提交
1f3ed948ad
共有 1 個文件被更改,包括 2 次插入0 次删除
  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--;