From e95fc386e18e326d9c210114e0ddb63468cbd604 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sun, 21 Apr 2019 00:56:43 +0200 Subject: [PATCH] fixed crashes in Camelot --- bigstuff.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/bigstuff.cpp b/bigstuff.cpp index fc820c80..10d0dc98 100644 --- a/bigstuff.cpp +++ b/bigstuff.cpp @@ -32,6 +32,7 @@ int getAnthraxData(cell *c, bool b) { int roundTableRadius(cell *c) { if(eubinary) return 28; if(tactic::on) return getAnthraxData(c, true); + if(!c->master->alt) return 28; return c->master->alt->alt->emeraldval & GRAIL_RADIUS_MASK; }