refactor: change logic

This commit is contained in:
Stevan Freeborn
2025-12-02 07:50:07 -06:00
parent 678b417191
commit 7b841db4eb
+1 -1
View File
@@ -60,7 +60,7 @@ func (d *dial) Turn(instruction instruction.Instruction) {
for range instruction.Distance() {
d.increaseOneClick()
if d.value >= 100 {
if d.value > 99 {
d.value -= 100
}