From 99486bfc3c81221a7eebe62902506f787b7cf19a Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sat, 25 Dec 2021 01:36:25 +0100 Subject: [PATCH] disabled debug of smart shortcuts --- rulegen.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rulegen.cpp b/rulegen.cpp index eb45764b..b88e34ae 100644 --- a/rulegen.cpp +++ b/rulegen.cpp @@ -758,7 +758,8 @@ EX void look_for_shortcuts(tcell *c, shortcut& sh) { } if(tw.at->dist < c->dist) { - println(hlog, "smart shortcut updated ", c->dist, " to ", tw.at->dist); + if(debugflags & DF_GEOM) + println(hlog, "smart shortcut updated ", c->dist, " to ", tw.at->dist); push_unify(tw, tw0); }