This commit is contained in:
Stephan Richter
2020-11-14 14:17:14 +01:00
parent 4e68383b8d
commit e9fc060349
2 changed files with 2 additions and 1 deletions

View File

@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>de.srsoftware</groupId>
<artifactId>web4rail</artifactId>
<version>0.11.24</version>
<version>0.11.25</version>
<name>Web4Rail</name>
<packaging>jar</packaging>
<description>Java Model Railway Control</description>

View File

@@ -99,6 +99,7 @@ public abstract class Block extends StretchableTile implements Comparable<Block>
public WaitTime setMin(Direction dir,int min) {
get(dir).min = min;
if (get(dir).max > min) setMax(dir,min);
return this;
}