Frictional Games Forum (read-only)

Full Version: A bug/typo report (I hope)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
While browsing through the game's HPS files out of boredom, I couldn't help but notice this section of code in inventory.hps:
Code:
void CombineMiscIngr(string &in asItemA, string &in asItemB)
{
    if(GetGlobalVarInt("WeyerNoteIsPicke") == 1)
        SetInventoryMessage("Inventory", "CombineLevel2126Ingredients02", -1);
    else
        SetInventoryMessage("Inventory", "CombineLevel2126Ingredients", -1);    
}
Notice that typo in the if command? It says "WeyerNoteIsPicke". So before declaring it as typo, I began looking for that variable in other files. I have only found it in 21_torture_nave.hps, but in that file it's written correctly.

So, is this really a mistake or am I just imagining things due to low sanity? :>