Fixed a bug where an equal Scale treshold wouldn't open Gates.

This commit is contained in:
Kjistóf 2016-05-13 18:47:26 +02:00
parent 42467c7384
commit 2fdb311315
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ public class Scale extends Field {
}
private void stackChanged() {
if (weight > threshold)
if (weight >= threshold)
gateConnected.setOpen(true);
else
gateConnected.setOpen(false);