From: bones_was_here Date: Fri, 7 Oct 2022 10:10:34 +0000 (+1000) Subject: func_door: use Q3 default of 2s .wait time on Q3 maps X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=27affc836db176c0039fa3d818c070693eaad36b;p=xonotic%2Fxonotic-data.pk3dir.git func_door: use Q3 default of 2s .wait time on Q3 maps --- 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)