From 697736d7b5f849623521aea2db44303dc213e5ae Mon Sep 17 00:00:00 2001 From: Adam Mikolajczak Date: Fri, 10 May 2024 11:25:50 +0200 Subject: [PATCH] fix: the cost of entering water in a-star alg is now 1000. --- src/tractor.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/tractor.py b/src/tractor.py index af58d461..d07d002f 100644 --- a/src/tractor.py +++ b/src/tractor.py @@ -109,6 +109,8 @@ class Tractor(pygame.sprite.Sprite): match (self.field.tiles.sprites()[y * 16 + x].type): case ('grass'): cost = 1 + case ('water'): + cost = 1000 case _: cost = 100 return cost