После "забавного" обновления с батл пасом, у меня просто вылетает при заходе в кастомку, что через хаммер, что через просто доту.
Выдаёт такую ошибку:

Код custom_loading_screen.xml:
Выдаёт такую ошибку:

Код custom_loading_screen.xml:
<root>
<styles>
<include src="file://{resources}/styles/custom_game/custom_loading_screen.css" />
</styles>
<script>
function PlayerSelect(value)
{
GameEvents.SendCustomGameEventToServer("event_vote", {
SelectedValue:value,
PlayerID: Players.GetLocalPlayer()
})
$("#ScoreSelector").style.visibility = "collapse";
}
function OnStateChanged(args)
{
if (Game.GetState() == 2){
$("#ScoreSelector").style.visibility = "visible";
}
}
GameEvents.Subscribe("game_rules_state_change", OnStateChanged);
$("#ScoreSelector").style.visibility = "collapse";
</script>
<script>
var links = {
VK: 'https://vk.com/s4ndw1ch',
Forum: 'https://steamcommunity.com/id/s4ndw1ch_off/myworkshopfiles/'
};
GameEvents.Subscribe( 'disconnect', function(){
Game.Disconnect();
});
var links_panel = $('#LinksButtons');
var blocker = $.GetContextPanel().GetParent().FindChild('SidebarAndBattleCupLayoutContainer');
if( blocker ){
blocker.hittest = false;
blocker.hittestchildren = false;
}
function OnClickLink( id ){
var panel = links_panel.FindChild( id );
if( panel ){
panel.AddClass('Loading');
$.Schedule( 3.0, function(){
panel.RemoveClass('Loading');
});
$.Schedule( 0.7, function(){
var url = links[ id ];
if( url ) $.DispatchEvent( 'ExternalBrowserGoToURL', panel, url );
});
}
}
</script>
<Panel>
<Image id="image_bg" class="ImageBg" src="file://{images}/custom_game/loading_screen/loadscreen.psd" scaling="stretch-to-fit-y-preserve-aspect" />
<Panel class="AddonLoadingRoot">
<Panel id="LinksButtons">
<Button id="VK" onactivate="OnClickLink('VK')">
<Panel>
<Image src="file://{images}/custom_game/loading_screen/vk.png"/>
<Image id="Roter" src="file://{images}/custom_game/loading_screen/links_roter.png"/>
</Panel>
<Label class="LinksButtonsText" text="#Loadscreen_VK" />
</Button>
<Button id="Forum" onactivate="OnClickLink('Forum')">
<Panel style="horizontal-align: center;">
<Image src="file://{images}/custom_game/loading_screen/steam.png"/>
<Image id="Roter" src="file://{images}/custom_game/loading_screen/links_roter.png"/>
</Panel>
<Label class="LinksButtonsText" text="#Loadscreen_Forum" />
</Button>
</Panel>
</Panel>
<Panel id="ScoreSelector">
<Label text="#Preview_ScoreTitle" id="select_score_title" />
<Label text="#Preview_ScoreTitle2" id="select_score_title2" />
<Label text="#Preview_ScoreTitle3" id="select_score_title3" />
<Panel id="scores">
<Button id="s_10" onactivate="PlayerSelect('10')" class="knopka">
<Image id="i_10" class="ScoreBG" />
<Label class="ScoreText" text="10" />
</Button>
<Button id="s_25" onactivate="PlayerSelect('25')" class="knopka">
<Image id="i_25" class="ScoreBG" />
<Label class="ScoreText" text="25" />
</Button>
<Button id="s_50" onactivate="PlayerSelect('50')" class="knopka">
<Image id="i_50" class="ScoreBG" />
<Label class="ScoreText" text="50" />
</Button>
<Button id="s_75" onactivate="PlayerSelect('75')" class="knopka">
<Image id="i_75" class="ScoreBG" />
<Label class="ScoreText" text="75" />
</Button>
<Button id="s_100" onactivate="PlayerSelect('100')" class="knopka">
<Image id="i_100" class="ScoreBG"/>
<Label class="ScoreText" text="100" />
</Button>
</Panel>
</Panel>
</Panel>
</root>