Recent content by Hitchiker42

  1. H

    Inventory Button Disabled

    I'm not totally sure why but the sidebar inventory button is disabled for me, I can still access the inventory using the keyboard shortcut but the button itself is disabled. I imagine it's a simple toggle but you guys stopped leaving the source map accessible so I can't really figure out what...
  2. H

    Extra 'else' in pexigiaQuest.js

    Line 490 in pegxiaQuest.js is else if(cumQ >= 10000) however the initial if statement is if(cumQ >= 2000) meaning the branch never gets taken. Based on the context the else should just be removed, since the content inside of it seems to continue from the content in the original if branch. It's...
  3. H

    Misnamed bust images in kiro quest vr

    The busts for the vr encounters in kiro's recrutment quest are named with a "KQ_VR_" prefix, however the actual image files just have a "vr_" prefix. This obviously causes the busts to not display. Doing a simple find and replace of "KQ_VR" to "VR" fixed the issue for me, or you could rename the...