version update and fix this one bug

This commit is contained in:
RandomityGuy 2025-06-30 17:45:16 +05:30
parent ddcc00aff2
commit 08a8c7db47
3 changed files with 16 additions and 15 deletions

View file

@ -41,7 +41,7 @@ class MarbleGame {
static var canvas:Canvas; static var canvas:Canvas;
static var instance:MarbleGame; static var instance:MarbleGame;
static var currentVersion = "1.2.2"; static var currentVersion = "1.2.3";
var world:MarbleWorld; var world:MarbleWorld;
var previewWorld:PreviewWorld; var previewWorld:PreviewWorld;

View file

@ -524,7 +524,6 @@ class Net {
serverInfo.players++; serverInfo.players++;
} }
serverInfo.players++;
MasterServerClient.instance.sendServerInfo(serverInfo); // notify the server of the new player MasterServerClient.instance.sendServerInfo(serverInfo); // notify the server of the new player
if (MarbleGame.canvas.content is MultiplayerLevelSelectGui) { if (MarbleGame.canvas.content is MultiplayerLevelSelectGui) {

View file

@ -10,12 +10,13 @@
<Identity <Identity
Name="mbhaxe" Name="mbhaxe"
Publisher="CN=dlw" Publisher="CN=dlw"
Version="1.2.2.0" /> Version="1.2.3.0" />
<mp:PhoneIdentity PhoneProductId="5a528e66-e0fc-43fb-b377-ce0b1bb0d3e8" PhonePublisherId="00000000-0000-0000-0000-000000000000"/> <mp:PhoneIdentity PhoneProductId="5a528e66-e0fc-43fb-b377-ce0b1bb0d3e8"
PhonePublisherId="00000000-0000-0000-0000-000000000000" />
<Properties> <Properties>
<DisplayName>MBHaxe</DisplayName> <DisplayName>Marble Blast Ultra</DisplayName>
<PublisherDisplayName>danwo</PublisherDisplayName> <PublisherDisplayName>danwo</PublisherDisplayName>
<Logo>Assets\StoreLogo.png</Logo> <Logo>Assets\StoreLogo.png</Logo>
</Properties> </Properties>
@ -25,7 +26,7 @@
</Dependencies> </Dependencies>
<Resources> <Resources>
<Resource Language="x-generate"/> <Resource Language="x-generate" />
</Resources> </Resources>
<Applications> <Applications>
@ -33,26 +34,27 @@
Executable="$targetnametoken$.exe" Executable="$targetnametoken$.exe"
EntryPoint="uwp.App"> EntryPoint="uwp.App">
<uap:VisualElements <uap:VisualElements
DisplayName="MBHaxe" DisplayName="Marble Blast Ultra"
Square150x150Logo="Assets\Square150x150Logo.png" Square150x150Logo="Assets\Square150x150Logo.png"
Square44x44Logo="Assets\Square44x44Logo.png" Square44x44Logo="Assets\Square44x44Logo.png"
Description="Port of mbhaxe for UWP" Description="Port of mbhaxe for UWP"
BackgroundColor="transparent"> BackgroundColor="transparent">
<!--<uap:SplashScreen Image="Assets\SplashScreen.png" /> --> <!--<uap:SplashScreen
<uap:DefaultTile/> Image="Assets\SplashScreen.png" /> -->
<uap:DefaultTile />
</uap:VisualElements> </uap:VisualElements>
</Application> </Application>
</Applications> </Applications>
<Capabilities> <Capabilities>
<rescap:Capability Name="runFullTrust"/> <rescap:Capability Name="runFullTrust" />
<rescap:Capability Name="broadFileSystemAccess" /> <rescap:Capability Name="broadFileSystemAccess" />
<rescap:Capability Name="expandedResources" /> <rescap:Capability Name="expandedResources" />
<Capability Name="internetClient" /> <Capability Name="internetClient" />
<uap:Capability Name="removableStorage"/> <uap:Capability Name="removableStorage" />
<Capability Name="codeGeneration"/> <Capability Name="codeGeneration" />
<Capability Name="internetClientServer"/> <Capability Name="internetClientServer" />
<Capability Name="privateNetworkClientServer"/> <Capability Name="privateNetworkClientServer" />
</Capabilities> </Capabilities>
</Package> </Package>