- disabled negative gravity check.

According to reports on the forum this does not cause bad behavior.
This commit is contained in:
Christoph Oelckers 2020-10-17 09:11:44 +02:00
parent 34c3a851b7
commit 8e1b091cf3
1 changed files with 1 additions and 1 deletions

View File

@ -942,7 +942,7 @@ DEFINE_PROPERTY(gravity, F, Actor)
{
PROP_DOUBLE_PARM(i, 0);
if (i < 0) I_Error ("Gravity must not be negative.");
//if (i < 0) I_Error ("Gravity must not be negative.");
defaults->Gravity = i;
}