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
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.