Source File: curse-you-go-rogue/04_combat/movement.go.diff

--- 03_pathing_enemies/movement.go	2025-10-06 12:00:47.091211600 -0400
+++ 04_combat/movement.go	2025-10-06 12:00:49.969794700 -0400
@@ -7,5 +7,7 @@
   }
 
-  if !game.Occupied(target) {
+  if game.Occupied(target) {
+    game.Attack(target)
+  } else {
     game.Player.Pos = target
   }