Installera Steam
logga in
|
språk
简体中文 (förenklad kinesiska)
繁體中文 (traditionell kinesiska)
日本語 (japanska)
한국어 (koreanska)
ไทย (thailändska)
Български (bulgariska)
Čeština (tjeckiska)
Dansk (danska)
Deutsch (tyska)
English (engelska)
Español – España (spanska – Spanien)
Español – Latinoamérica (spanska – Latinamerika)
Ελληνικά (grekiska)
Français (franska)
Italiano (italienska)
Bahasa Indonesia (indonesiska)
Magyar (ungerska)
Nederlands (nederländska)
Norsk (norska)
Polski (polska)
Português (portugisiska – Portugal)
Português – Brasil (portugisiska – Brasilien)
Română (rumänska)
Русский (ryska)
Suomi (finska)
Türkçe (turkiska)
Tiếng Việt (vietnamesiska)
Українська (ukrainska)
Rapportera problem med översättningen
EDIT - This was user error, the file was accidentally named disablespawnfire.txt.txt lol
Consistently replicated, also running CF
I've yet to have it happen myself. But i've had 5 different players report it.
Even after clearing their Temp files.
Validating mods.
logging out layed down.
and toggling the Hud in settings.
we had the player respawn and teleported them back. that then fixed the bug.
That fixed it permanently?
modded class ActionTargetsCursor
{
override void Update()
{
// While player is 'invisible', they're logging in, so hide the target HUD or else they'll know their character is using the lie-down emote
if (m_Player && m_Player.m_ImmersiveLoginInvisible)
{
m_Root.Show(false);
m_CachedObject.Invalidate();
return;
}
super.Update();
};
};
----
It only seems to be happening when hitting "play" on at least DZSA, hitting load i don't run into this issue, not sure how to fix it but I narrowed down the bug to this at least.