speedlimit35 on 2023/09/24 02:52 of chinkaraoshiman
(log in to comment)
Cosmologicon on 2023/09/24 13:24:
There's 3 capitalization mismatches that cause a problem on Linux. You can fix two of them with a file change:
mv data/sounds/CLICK.ogg data/sounds/click.ogg mv data/images/breeder/items/food.png data/images/breeder/items/Food.png
However breeder/items/Autofeeder.png is referred to two different times in the code with different capitalization (in breeder_game.py and breeder/shop_class.py) so you'll need to change the code to fix it.
speedlimit35 on 2023/09/24 17:41:
Cosmologicon on 2023/09/24 23:44:
Cosmologicon on 2023/09/24 13:24:
There's 3 capitalization mismatches that cause a problem on Linux. You can fix two of them with a file change:
However breeder/items/Autofeeder.png is referred to two different times in the code with different capitalization (in breeder_game.py and breeder/shop_class.py) so you'll need to change the code to fix it.