Frictional Games Forum (read-only)
A bug/typo report (I hope) - Printable Version

+- Frictional Games Forum (read-only) (https://www.frictionalgames.com/forum)
+-- Forum: Technical Support (https://www.frictionalgames.com/forum/forum-57.html)
+--- Forum: Technical Support - Amnesia: The Dark Descent (https://www.frictionalgames.com/forum/forum-31.html)
+--- Thread: A bug/typo report (I hope) (/thread-5269.html)



A bug/typo report (I hope) - RazTK - 11-01-2010

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? :>