Commit 84566be2 authored by edo9300's avatar edo9300

Draw linked zones only if faceup

parent 5c6369fd
......@@ -207,7 +207,7 @@ void Game::DrawBackGround() {
else if (dField.hovered_location == LOCATION_MZONE) {
vertex = matManager.vFieldMzone[dField.hovered_controler][dField.hovered_sequence];
ClientCard* pcard = dField.mzone[dField.hovered_controler][dField.hovered_sequence];
if(pcard && pcard->type & TYPE_LINK) {
if(pcard && (pcard->type & TYPE_LINK) && (pcard->position & POS_FACEUP)) {
DrawLinkedZones(pcard);
}
} else if (dField.hovered_location == LOCATION_SZONE)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment