mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-02-22 11:51:41 +00:00
G_GhostTicker/G_ReadMetalTic: type should default to MT_NULL, not -1
This way, if for some reason the ghost has no skin, nothing should spawn at all
This commit is contained in:
parent
5542893548
commit
879a2bd20a
1 changed files with 2 additions and 2 deletions
|
@ -764,7 +764,7 @@ void G_GhostTicker(void)
|
||||||
if (xziptic & EZT_THOKMASK)
|
if (xziptic & EZT_THOKMASK)
|
||||||
{ // Let's only spawn ONE of these per frame, thanks.
|
{ // Let's only spawn ONE of these per frame, thanks.
|
||||||
mobj_t *mobj;
|
mobj_t *mobj;
|
||||||
INT32 type = -1;
|
UINT32 type = MT_NULL;
|
||||||
if (g->mo->skin)
|
if (g->mo->skin)
|
||||||
{
|
{
|
||||||
skin_t *skin = (skin_t *)g->mo->skin;
|
skin_t *skin = (skin_t *)g->mo->skin;
|
||||||
|
@ -1051,7 +1051,7 @@ void G_ReadMetalTic(mobj_t *metal)
|
||||||
if (xziptic & EZT_THOKMASK)
|
if (xziptic & EZT_THOKMASK)
|
||||||
{ // Let's only spawn ONE of these per frame, thanks.
|
{ // Let's only spawn ONE of these per frame, thanks.
|
||||||
mobj_t *mobj;
|
mobj_t *mobj;
|
||||||
INT32 type = -1;
|
UINT32 type = MT_NULL;
|
||||||
if (metal->skin)
|
if (metal->skin)
|
||||||
{
|
{
|
||||||
skin_t *skin = (skin_t *)metal->skin;
|
skin_t *skin = (skin_t *)metal->skin;
|
||||||
|
|
Loading…
Reference in a new issue