From 27ced477a6293c1ea08eb20fea0875f71254a984 Mon Sep 17 00:00:00 2001 From: tankefugl Date: Mon, 27 Jun 2005 16:52:33 +0000 Subject: [PATCH] Mantis 0000892: o Fixed a bug where a crouching player on an IP would not be killed. Extended the range the spawn damage is applied for, roughly 10 units downwards. git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@217 67975925-1194-0748-b3d5-c16f83f1a3a1 --- main/source/mod/AvHServerUtil.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/main/source/mod/AvHServerUtil.cpp b/main/source/mod/AvHServerUtil.cpp index 3fd40500..2917befb 100644 --- a/main/source/mod/AvHServerUtil.cpp +++ b/main/source/mod/AvHServerUtil.cpp @@ -247,8 +247,10 @@ void AvHSUKillPlayersTouchingPlayer(AvHPlayer* inPlayer, entvars_t* inInflictor) FOR_ALL_ENTITIES(kAvHPlayerClassName, AvHPlayer*) if((theEntity != inPlayer) && (theEntity->GetIsRelevant())) { + // tankefugl: 0000892 -- fixed to allow spawnkilling of crouching players on IP float theDistanceToPlayer = VectorDistance(inPlayer->pev->origin, theEntity->pev->origin); - if(theDistanceToPlayer < 30) + float zDistance = inPlayer->pev->origin[2] - theEntity->pev->origin[2]; + if(theDistanceToPlayer < 30 || (theDistanceToPlayer < 40 && zDistance > 0 && zDistance < 40)) { theEntity->TakeDamage(inInflictor, theEntity->pev, 10000, DMG_GENERIC); }