mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-25 13:31:55 +00:00
- SW: Fix issue with RC tank in $seabase.
* Originated from 8efe6f638b
.
* I'm sure this was meant to be 0.05, but became 0.5 by mistake.
* Use something closer to `12800. / 262144.`.
* Fixes #831.
This commit is contained in:
parent
f431d51c2f
commit
7760eff4ba
1 changed files with 1 additions and 1 deletions
|
@ -2608,7 +2608,7 @@ void DoPlayerMoveVehicle(PLAYER* pp)
|
|||
pp->vect = (pp->vect + (pp->ovect*1))/2;
|
||||
}
|
||||
|
||||
if (abs(pp->vect.X) < 0.5 && abs(pp->vect.Y) < 0.5)
|
||||
if (abs(pp->vect.X) < 0.04883 && abs(pp->vect.Y) < 0.04883)
|
||||
pp->vect.X = pp->vect.Y = 0;
|
||||
|
||||
pp->lastcursector = pp->cursector;
|
||||
|
|
Loading…
Reference in a new issue