func_wall: Change MOVETYPE_NONE to MOVETYPE_PUSH
This commit is contained in:
parent
aef65b5749
commit
728b261471
2 changed files with 3 additions and 3 deletions
|
@ -79,8 +79,8 @@ func_illusionary::Respawn(void)
|
||||||
|
|
||||||
/* func_illusionary specifics */
|
/* func_illusionary specifics */
|
||||||
SetAngles([0,0,0]);
|
SetAngles([0,0,0]);
|
||||||
SetMovetype(MOVETYPE_PUSH);
|
SetMovetype(MOVETYPE_NONE);
|
||||||
SetSolid(SOLID_BSP);
|
SetSolid(SOLID_NOT);
|
||||||
SetModel(m_oldModel);
|
SetModel(m_oldModel);
|
||||||
SetOrigin(m_oldOrigin);
|
SetOrigin(m_oldOrigin);
|
||||||
SetSkin(0);
|
SetSkin(0);
|
||||||
|
|
|
@ -119,7 +119,7 @@ func_wall::Init(void)
|
||||||
precache_model(model);
|
precache_model(model);
|
||||||
setmodel(this, model);
|
setmodel(this, model);
|
||||||
setorigin(this, origin);
|
setorigin(this, origin);
|
||||||
movetype = MOVETYPE_NONE;
|
movetype = MOVETYPE_PUSH;
|
||||||
drawmask = MASK_ENGINE;
|
drawmask = MASK_ENGINE;
|
||||||
solid = SOLID_BSP;
|
solid = SOLID_BSP;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue