diff --git a/src/java/com/threerings/parlor/data/Table.java b/src/java/com/threerings/parlor/data/Table.java index e75fd1a45..e3f29a16b 100644 --- a/src/java/com/threerings/parlor/data/Table.java +++ b/src/java/com/threerings/parlor/data/Table.java @@ -176,7 +176,7 @@ public class Table } // make sure the requested position is a valid one - if (position >= maxpos) { + if (position >= maxpos || position < 0) { return INVALID_TABLE_POSITION; }