summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNikolay Korolev <nickvnuk@gmail.com>2019-09-12 18:13:32 +0200
committerGitHub <noreply@github.com>2019-09-12 18:13:32 +0200
commit404115985560055141eb0be1de496bd9ce1fa690 (patch)
tree175cc188c1d6b9c219648b86a95fa831955999e9
parentMerge pull request #205 from erorcun/erorcun (diff)
downloadre3-404115985560055141eb0be1de496bd9ce1fa690.tar
re3-404115985560055141eb0be1de496bd9ce1fa690.tar.gz
re3-404115985560055141eb0be1de496bd9ce1fa690.tar.bz2
re3-404115985560055141eb0be1de496bd9ce1fa690.tar.lz
re3-404115985560055141eb0be1de496bd9ce1fa690.tar.xz
re3-404115985560055141eb0be1de496bd9ce1fa690.tar.zst
re3-404115985560055141eb0be1de496bd9ce1fa690.zip
-rw-r--r--src/core/World.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/World.cpp b/src/core/World.cpp
index 35e572b0..1598967a 100644
--- a/src/core/World.cpp
+++ b/src/core/World.cpp
@@ -1114,7 +1114,7 @@ CWorld::Process(void)
movingEnt->bIsStuck = true;
if (movingEnt->m_status == STATUS_PLAYER) {
printf("STUCK: Final Step: Player Entity %d Is Stuck\n", movingEnt->m_modelIndex);
- movingEnt->m_vecMoveSpeed *= 3.0f;
+ movingEnt->m_vecMoveSpeed *= 0.3f;
movingEnt->ApplyMoveSpeed();
movingEnt->ApplyTurnSpeed();
}