aboutsummaryrefslogtreecommitdiff
path: root/go/client
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fischer@muhq.space>2023-02-15 16:41:29 +0100
committerFlorian Fischer <florian.fischer@muhq.space>2025-01-27 16:43:50 +0100
commitf9fef6046fdc6895d5eaa7fc15d9b4f4a02becae (patch)
tree7f3ffdd01af02d60c78ea65bafa75384cf140aac /go/client
parent0edb119b497bf1283f976693b02e044033d4de08 (diff)
downloadmuhqs-game-f9fef6046fdc6895d5eaa7fc15d9b4f4a02becae.tar.gz
muhqs-game-f9fef6046fdc6895d5eaa7fc15d9b4f4a02becae.zip
replace Fatalf with Panicf
Panicf includes a stacktrace and causes a debugger to halt.
Diffstat (limited to 'go/client')
-rw-r--r--go/client/game.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/go/client/game.go b/go/client/game.go
index 9fb26efa..b70c2b8f 100644
--- a/go/client/game.go
+++ b/go/client/game.go
@@ -317,7 +317,7 @@ func (g *Game) AddHighlight(obj interface{}) {
case *game.Unit:
g.mapView.AddHighlightPermanent(obj)
default:
- log.Fatalf("Unhandled highlight of type %T", obj)
+ log.Panicf("Unhandled highlight of type %T", obj)
}
}
@@ -450,7 +450,7 @@ func (g *Game) handleSelection(obj interface{}, x, y int) {
g.handLayer.HighlightCard(obj.C)
default:
- log.Fatalf("Object of type %T not handled", obj)
+ log.Panicf("Object of type %T not handled", obj)
}
}
}