This commit is contained in:
Stephan Richter
2021-01-15 10:50:08 +01:00
parent 0902017bba
commit 703820b38f
10 changed files with 64 additions and 18 deletions

View File

@@ -186,12 +186,6 @@ public abstract class Block extends StretchableTile{
return this;
}
public static Block get(Id blockId) {
Tile tile = plan.get(blockId, false);
if (tile instanceof Block) return (Block) tile;
return null;
}
private WaitTime getWaitTime(String tag) {
if (tag == null) return null;
for (WaitTime wt : waitTimes) {