X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fcommon%2Fmapobjects%2Ffunc%2Frainsnow.qc;h=9e9dc64e280b500337f4a6458b206c8c769dddf1;hb=e898b30bf422a1fd3df8dba999785b2598d97fde;hp=de49f1e367c508327cc1363e8a57b9ec9f1a61e6;hpb=323105d51f8eb6dea47c063965be5e34ad57f987;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/common/mapobjects/func/rainsnow.qc b/qcsrc/common/mapobjects/func/rainsnow.qc index de49f1e36..9e9dc64e2 100644 --- a/qcsrc/common/mapobjects/func/rainsnow.qc +++ b/qcsrc/common/mapobjects/func/rainsnow.qc @@ -134,9 +134,9 @@ NET_HANDLE(ENT_CLIENT_RAINSNOW, bool isnew) this.maxs = 0.5 * this.maxs; this.origin = this.origin - this.mins; + this.solid = SOLID_NOT; // before setorigin/setsize to prevent area grid linking setorigin(this, this.origin); setsize(this, this.mins, this.maxs); - this.solid = SOLID_NOT; if (isnew) IL_PUSH(g_drawables, this); this.draw = Draw_RainSnow; }