server fixFreeSpaces fix
This commit is contained in:
parent
dcf54ae2de
commit
b702a12428
1 changed files with 1 additions and 1 deletions
|
@ -177,7 +177,7 @@ void Server_CardZone::fixFreeSpaces(CommandContainer *cont)
|
|||
if (!coordMap.contains(y * 10000 + baseX)) {
|
||||
if (coordMap.contains(y * 10000 + baseX + 1))
|
||||
moveCard(cont, coordMap, coordMap.value(y * 10000 + baseX + 1), baseX, y);
|
||||
else if (coordMap.contains(baseX + 2)) {
|
||||
else if (coordMap.contains(y * 10000 + baseX + 2)) {
|
||||
moveCard(cont, coordMap, coordMap.value(y * 10000 + baseX + 2), baseX, y);
|
||||
return;
|
||||
} else
|
||||
|
|
Loading…
Reference in a new issue