From effa47ec93ccb80ee3c8f5814d19547e1db6976d Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Mon, 1 Jun 2020 12:46:02 -0700 Subject: [PATCH] Update projectile.dm (#12380) --- code/modules/projectiles/projectile.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/projectiles/projectile.dm b/code/modules/projectiles/projectile.dm index 213bc35b52..89af812dd2 100644 --- a/code/modules/projectiles/projectile.dm +++ b/code/modules/projectiles/projectile.dm @@ -548,7 +548,7 @@ var/safety = CEILING(pixel_increment_amount / world.icon_size, 1) * 2 + 1 while(T != loc) if(!--safety) - CRASH("Projectile took more than pixel incrememnt speed times 2 to get to its location, this is probably something seriously scuffed going on.") + CRASH("[type] took too long (allowed: [CEILING(pixel_increment_amount/world.icon_size,1)*2] moves) to get to its location.") step_towards(src, T) if(QDELETED(src)) return