FC18: Add missing sandworm offset of cake points (worked by alignment)

This commit is contained in:
Willem Cazander 2025-09-08 13:04:07 +02:00
parent 1a8666933f
commit ab80c81c97
2 changed files with 4 additions and 4 deletions

View file

@ -471,9 +471,9 @@ public class FourCornerZionStenoLexer implements FourCornerZionStenoPetroglyphs
for (int i = idxFirst; i <= idxLast; i++) {
int cakePoint = lexer.input.get(i);
if (cakePoint >= FourCornerDotCake.FC_SANDWALK_12.getStart() && cakePoint <= FourCornerDotCake.FC_SANDWALK_12.getStop()) {
sandWalk12.add(cakePoint);
sandWalk12.add(cakePoint - FourCornerDotCake.FC_SANDWALK_12.getStart());
} else {
sandSpice15.add(cakePoint);
sandSpice15.add(cakePoint - FourCornerDotCake.FC_SANDWORM_15.getStart());
}
}
List<PrimordialOctal> sandWalk = new ArrayList<>();