Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

abowman

1
Posts
1
Topics
11
Following
A member registered Dec 03, 2018

Recent community posts

0x72:

Line 32 in 04/World.lua is:   

    if o ~= item and checkCollision(item, o) then

but the variable in the for loop is "other" so the line should be:

    if other ~= item and checkCollision(item, other) then

The file runs if I make that change.


Regards,

Andrew