mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-30 16:00:55 +00:00
- disabled negative gravity check.
According to reports on the forum this does not cause bad behavior.
This commit is contained in:
parent
34c3a851b7
commit
8e1b091cf3
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue