summaryrefslogtreecommitdiff
path: root/scripts/gui
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/gui')
-rw-r--r--scripts/gui/table.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/gui/table.js b/scripts/gui/table.js
index 232382d..5e69f3e 100644
--- a/scripts/gui/table.js
+++ b/scripts/gui/table.js
@@ -120,9 +120,9 @@ class Table{
// Check if a position is within a deck
checkDeck(x, y)
{
- for(let d of this.decks)
+ for(let d of Object.keys(this.decks))
{
- if(d.isInside(x, y))
+ if(this.decks[d].isInside(x, y))
return d;
}
return null;
@@ -155,7 +155,7 @@ class Table{
if(c !== null)
{
if(d !== null)
- this.checkMove(c.getID(), d.getID());
+ this.checkMove(c.getID(), d);
else
c.resetPos();
}