- 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 committed by drfrag
parent 6ba3eba4d3
commit 75b90cdbf2

View file

@ -955,7 +955,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;
}