diff --git a/game/src/global/Global.gd b/game/src/global/Global.gd index e760ca9..f6021fa 100644 --- a/game/src/global/Global.gd +++ b/game/src/global/Global.gd @@ -223,7 +223,7 @@ func increase_stats(): if is_worldcup: if final_teams[0]["name"] == selected_squad: league_stats[current_league_name]["played"] += 1 - league_stats[current_league_name]["wins"] += 1 + league_stats[current_league_name]["win"] += 1 else: league_stats[current_league_name]["played"] += 1 else: @@ -231,7 +231,7 @@ func increase_stats(): if team["name"] == selected_squad: if team["position"] == 0: league_stats[current_league_name]["played"] += 1 - league_stats[current_league_name]["wins"] += 1 + league_stats[current_league_name]["win"] += 1 else: league_stats[current_league_name]["played"] += 1 diff --git a/game/src/ui/menu/MenuScreen.tscn b/game/src/ui/menu/MenuScreen.tscn index 98469dc..39ee6bf 100644 --- a/game/src/ui/menu/MenuScreen.tscn +++ b/game/src/ui/menu/MenuScreen.tscn @@ -109,44 +109,44 @@ margin_bottom = 1149.0 theme = ExtResource( 4 ) [node name="VBoxContainer" type="VBoxContainer" parent="Content/MarginContainer"] -margin_top = 109.0 +margin_top = 130.0 margin_right = 480.0 -margin_bottom = 771.0 +margin_bottom = 750.0 size_flags_vertical = 4 [node name="Play" type="Button" parent="Content/MarginContainer/VBoxContainer"] margin_right = 480.0 -margin_bottom = 102.0 +margin_bottom = 95.0 text = "PLAY" [node name="Shop" type="Button" parent="Content/MarginContainer/VBoxContainer"] -margin_top = 112.0 +margin_top = 105.0 margin_right = 480.0 -margin_bottom = 214.0 +margin_bottom = 200.0 text = "SHOP" [node name="Statistics" type="Button" parent="Content/MarginContainer/VBoxContainer"] -margin_top = 224.0 +margin_top = 210.0 margin_right = 480.0 -margin_bottom = 326.0 +margin_bottom = 305.0 text = "HALL" [node name="Settings" type="Button" parent="Content/MarginContainer/VBoxContainer"] -margin_top = 336.0 +margin_top = 315.0 margin_right = 480.0 -margin_bottom = 438.0 +margin_bottom = 410.0 text = "SETTINGS" [node name="Info" type="Button" parent="Content/MarginContainer/VBoxContainer"] -margin_top = 448.0 +margin_top = 420.0 margin_right = 480.0 -margin_bottom = 550.0 +margin_bottom = 515.0 text = "INFO" [node name="Exit" type="Button" parent="Content/MarginContainer/VBoxContainer"] -margin_top = 560.0 +margin_top = 525.0 margin_right = 480.0 -margin_bottom = 662.0 +margin_bottom = 620.0 text = "EXIT" [node name="SimonDalvai" type="LinkButton" parent="Content"] @@ -179,12 +179,9 @@ margin_right = 1148.85 margin_bottom = 894.054 rect_scale = Vector2( 0.507877, 0.507877 ) text = "What's new? -- New balls -- Available on itch.io - and F-Droid -- Bugfix in Store -- Info screen with license - infos and more + +- Gramamr fixes thanks to @RustoMCSpit +- Bot vs Bot mode thanks to @MxtAppz Enjoy!" __meta__ = { diff --git a/game/src/ui/statistics/Statistics.gd b/game/src/ui/statistics/Statistics.gd index cb3fe90..16e4463 100644 --- a/game/src/ui/statistics/Statistics.gd +++ b/game/src/ui/statistics/Statistics.gd @@ -18,7 +18,7 @@ func _ready(): $GridContainer.add_child(played_label) var win_label = Label.new() - win_label.set_text(str(Global.league_stats[league]["wins"])) + win_label.set_text(str(Global.league_stats[league]["win"])) $GridContainer.add_child(win_label)