fix: Chess Rogue Cell

This commit is contained in:
Somebody
2024-12-14 18:25:14 +08:00
parent 163a16aa8c
commit cb069bf733

View File

@@ -189,14 +189,14 @@ public class ChessRogueCellInstance
var info = new ChessRogueCell
{
CellStatus = CellStatus,
//PosY = (uint)PosY,
PosY = (uint)PosY,
Id = (uint)GetCellId(),
//BlockType = (uint)BlockType,
BlockType = (uint)BlockType,
IsUnlock = true,
RoomId = (uint)RoomId,
IsUnlocked = true
//PosX = (uint)GetRow(),
//MarkType = (uint)MarkType
IsUnlocked = true,
PosX = (uint)GetRow(),
MarkType = (uint)MarkType
};
if (CellAdvanceInfo.Count <= 0) return info;