]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Mark func_static as a solid model (it acts as a wall in other games)
authorMario <mario.mario@y7mail.com>
Sat, 11 Jul 2020 12:16:51 +0000 (22:16 +1000)
committerMario <mario.mario@y7mail.com>
Sat, 11 Jul 2020 12:16:51 +0000 (22:16 +1000)
qcsrc/common/mapobjects/models.qc

index 18d033663eaff85541fadfffe49dcbf849370484..790978b99470eb6f98a554f7f8ea2340185f1707 100644 (file)
@@ -195,11 +195,11 @@ spawnfunc(misc_models)            { this.angles_x = -this.angles.x; G_MODEL_INIT
 // non-solid brush entities:
 spawnfunc(func_illusionary)       { G_MODEL_INIT      (this, SOLID_NOT) } // Q1 name (WARNING: MISPREDICTED)
 spawnfunc(func_clientillusionary) { G_CLIENTMODEL_INIT(this, SOLID_NOT) } // brush entity
-spawnfunc(func_static)            { G_MODEL_INIT      (this, SOLID_NOT) } // DEPRECATED old alias name from some other game
 
 // solid brush entities
 spawnfunc(func_wall)              { G_MODEL_INIT      (this, SOLID_BSP) } // Q1 name
 spawnfunc(func_clientwall)        { G_CLIENTMODEL_INIT(this, SOLID_BSP) } // brush entity (WARNING: MISPREDICTED)
+spawnfunc(func_static)            { G_MODEL_INIT      (this, SOLID_BSP) } // DEPRECATED old alias name from some other game
 #elif defined(CSQC)
 .float alpha;
 .float scale;