From 8e1b091cf3e22e6494664fd2d587aef15236baf3 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 17 Oct 2020 09:11:44 +0200 Subject: [PATCH] - disabled negative gravity check. According to reports on the forum this does not cause bad behavior. --- src/scripting/thingdef_properties.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripting/thingdef_properties.cpp b/src/scripting/thingdef_properties.cpp index 6047344dc0..d92e0a7348 100644 --- a/src/scripting/thingdef_properties.cpp +++ b/src/scripting/thingdef_properties.cpp @@ -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; }