From ed26be0917dbba409d7d62e32bd0395d64570d3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20M=C3=BCller?= Date: Sun, 2 Apr 2023 00:02:40 +0200 Subject: [PATCH] Improve collision entity access error message See #6489. --- src/game/collision.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/collision.cpp b/src/game/collision.cpp index 5850bcf1e..07e327e79 100644 --- a/src/game/collision.cpp +++ b/src/game/collision.cpp @@ -1056,7 +1056,7 @@ int CCollision::Entity(int x, int y, int Layer) const default: pName = "Unknown"; } - dbg_msg("collision", "something is VERY wrong with the %s layer please report this at https://github.com/ddnet/ddnet, you will need to post the map as well and any steps that u think may have led to this", pName); + dbg_msg("collision", "Something is VERY wrong with the %s layer near (%d, %d). Please report this at https://github.com/ddnet/ddnet/issues, you will need to post the map as well and any steps that you think may have led to this.", pName, x, y); return 0; } switch(Layer)