Localizzation Addon

Add-Ons for MFPS.
Post Reply
User avatar
Ciorbyn
Contributor
Contributor
Posts: 37
Joined: Thu Aug 31, 2017 8:44 am

Once this addon is installed, the "Spectator" indication within the game scene no longer works.
Tested on MFPS 1.8 and 1.9
User avatar
Ciorbyn
Contributor
Contributor
Posts: 37
Joined: Thu Aug 31, 2017 8:44 am

Ok I write just to have a trace ...
For those wishing to solve the problem just to change on bl_PlayerScoreboard.cs

Code: Select all

            SpectatorsCountText.text = string.Format(bl_GameTexts.Spectators.Localized(122), spectators);
with

Code: Select all

            SpectatorsCountText.text = string.Format(bl_GameTexts.Spectators.Localized(36), spectators);
Basically the code 122 was changed which referred to the text from the specator button.
Post Reply