Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

zhs2

2
Posts
A member registered Jun 07, 2020

Recent community posts

(1 edit)

One possible solution below, as provided by a friend who instantly fixes the bugs when he sees them without even thinking. I've not seen the archvile bug yet, but if you can describe it or better yet provide a VM abort I can try to look into that too.

(1 edit)

The current version of Babel (Monsters) (20230715193925) has no safety on the function A_CacoSpread and thus potential for VM aborts. The members mid, left, and right can be null since A_SpawnProjectile will fail to spawn a projectile if there is no room. Recommend you check if these exist before setting fields on them, e.g if(mid) { if(left) { ... } if (right) { ... } }