Yes you can, but not at the moment.Can you pursue a relationship with Himiko Toga though
The Developer stated that the game on the site right now was compiled with the wrong version on Renpy. We will have to wait until they fix the issue, not sure how long that will be.Is the game broken for anyone else or just me?
Well it was correct. AI will end us allIf you can then change
if mc_inv.qty(qRayGoggles) > 0:
to
if mc_inv.qty(qRayGoggles) is not None and mc_inv.qty(qRayGoggles) > 0:
In the code you can find it by looking at the game/screens/mainUI.rpy
Btw I'm not a coder just asked Chatgpt for a fix so do it at your own risk I'm not responsible
It worked but the same everything else is brokenIf you can then change
if mc_inv.qty(qRayGoggles) > 0:
to
if mc_inv.qty(qRayGoggles) is not None and mc_inv.qty(qRayGoggles) > 0:
In the code you can find it by looking at the game/screens/mainUI.rpy
Btw I'm not a coder just asked Chatgpt for a fix so do it at your own risk I'm not responsible