mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-05 04:53:54 -07:00
remove cards being looked at from the count on drawing (#4671)
This commit is contained in:
parent
90f187e885
commit
a7232513a7
2 changed files with 6 additions and 2 deletions
|
|
@ -68,7 +68,7 @@ public:
|
|||
}
|
||||
void setCardsBeingLookedAt(int _cardsBeingLookedAt)
|
||||
{
|
||||
cardsBeingLookedAt = _cardsBeingLookedAt;
|
||||
cardsBeingLookedAt = qMax(0, _cardsBeingLookedAt);
|
||||
}
|
||||
bool isCardAtPosLookedAt(int pos) const;
|
||||
bool hasCoords() const
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue