Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
I'm playing on Survival Horror Mode
PC, Windows 11
I think I have an idea where this started for me. In the Toy Shop I activated the mushroom boy and got the shotgun upgrade, but I could still talk with him afterwards. Somehow I managed to both talk with him and interact with the cash register, which overlapped the two interactions. Maybe this will help?
Thank you devs 🙏, i bought it right away 5pm Europe yesterday and are so frustrated I can't continue until it's fixed (btw making a request in the future being able to log all lore file somewhere to read 😅 )
Setup: Win 10 Pro, i5-4460, GTX 960.
Upd. Nothing has changed on easy mode. Waiting for the patch.
The little mushroom boys will shout at anyone from Germany.
The little mushroom boys will shun anyone from Sweden.
The little mushroom boys will berate anyone from Spain.
And so on. Anyone have any guesses?
What happened was: in some places in the game, we have config settings stored as text. The trigger distance for the little mushroom boys is one of these config settings, one value per boy.
Unlike other places in the game, these distances are fractional values - "0.4" for example.
In the UK, we write our numbers like this: 1,234.56 (meaning one thousand, two hundred and thirty four point five six).
However in France, Sweden and others, they would write 1 234,56
In Germany, Spain and others, its 1.234,56
Under the hood, in the code that takes the mushroom boy trigger range text - "0.4" - and turns it into a number for the rest of the code to use, the default is to use the number style native to the computer the game is running on.
So on French computers, "0.4" turns into 0, since it doesn't know what to do with the "." or anything after it. So mushroom boy trigger range is now 0, and hard/impossible to enter.
On German computers, "0.4" turns into 4, since "." is the thousands separator, so it takes it's best guess at what was meant. Now the mushroom boy trigger range is 4, and will reach halfway across the room.
The fix was just making sure to always use the UK number system, since that's how our configs are written. Explains why it never came up in any of our playtesting (mostly UK and a few US folks).