From 27affc836db176c0039fa3d818c070693eaad36b Mon Sep 17 00:00:00 2001 From: bones_was_here Date: Fri, 7 Oct 2022 20:10:34 +1000 Subject: [PATCH] func_door: use Q3 default of 2s .wait time on Q3 maps --- qcsrc/common/mapobjects/func/door.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/common/mapobjects/func/door.qc b/qcsrc/common/mapobjects/func/door.qc index 22c34f4ae..4e081bfb7 100644 --- a/qcsrc/common/mapobjects/func/door.qc +++ b/qcsrc/common/mapobjects/func/door.qc @@ -704,7 +704,7 @@ void door_init_shared(entity this) } else if (!this.wait) { - this.wait = 3; + this.wait = q3compat ? 2 : 3; } if (!this.lip) -- 2.39.2