From: Rudolf Polzer Date: Sun, 21 Mar 2010 18:39:42 +0000 (+0100) Subject: invert x angle on misc_*model entities X-Git-Tag: xonotic-v0.1.0preview~681 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=693187a02f1e4326c2baf59236b6af29633c5381;p=xonotic%2Fxonotic-data.pk3dir.git invert x angle on misc_*model entities --- 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)