scemino / engge

Open source remake of Thimbleweed Park's engine
https://scemino.github.io/
MIT License
150 stars 15 forks source link

Script error when comparing integer to null #145

Closed scemino closed 4 years ago

scemino commented 4 years ago

In function closeBookstoreDoor(), the function closeDoors is called like that closeDoors(AStreet.aStreetOccultBooksDoor, BookStore.bookStoreStreetDoor, 0) The 3rd parameter is 0 (instead of null), so when it is compared to null, the result is false but it is expected to return true.