From 693187a02f1e4326c2baf59236b6af29633c5381 Mon Sep 17 00:00:00 2001 From: Rudolf Polzer Date: Sun, 21 Mar 2010 19:39:42 +0100 Subject: [PATCH] invert x angle on misc_*model entities --- qcsrc/server/g_models.qc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qcsrc/server/g_models.qc b/qcsrc/server/g_models.qc index e09b03bcc..8a380484a 100644 --- a/qcsrc/server/g_models.qc +++ b/qcsrc/server/g_models.qc @@ -133,9 +133,9 @@ float g_clientmodel_genericsendentity (entity to, float sf) Net_LinkEntity(self, TRUE, 0, g_clientmodel_genericsendentity); // non-solid model entities: -void spawnfunc_misc_gamemodel() { G_MODEL_INIT (SOLID_NOT) } // model entity -void spawnfunc_misc_clientmodel() { G_CLIENTMODEL_INIT(SOLID_NOT) } // model entity -void spawnfunc_misc_models() { G_MODEL_INIT (SOLID_NOT) } // DEPRECATED old compat entity with confusing name, do not use +void spawnfunc_misc_gamemodel() { self.angles_x = -self.angles_x; G_MODEL_INIT (SOLID_NOT) } // model entity +void spawnfunc_misc_clientmodel() { self.angles_x = -self.angles_x; G_CLIENTMODEL_INIT(SOLID_NOT) } // model entity +void spawnfunc_misc_models() { self.angles_x = -self.angles_x; G_MODEL_INIT (SOLID_NOT) } // DEPRECATED old compat entity with confusing name, do not use // non-solid brush entities: void spawnfunc_func_illusionary() { G_MODEL_INIT (SOLID_NOT) } // Q1 name (WARNING: MISPREDICTED) -- 2.39.2