Skip to content

Commit

Permalink
Changelog for 3816 (#6579)
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackYps authored Dec 10, 2024
1 parent 74a5b7d commit 73ed88e
Show file tree
Hide file tree
Showing 7 changed files with 55 additions and 10 deletions.
3 changes: 0 additions & 3 deletions changelog/snippets/balance.6568.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog/snippets/fix.6546.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog/snippets/fix.6569.md

This file was deleted.

35 changes: 35 additions & 0 deletions docs/_posts/2024-12-10-3816.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
layout: post
title: Game version 3816
permalink: changelog/3816
---

# Game version 3816 (10th of December, 2024)

This hotfix primarily fixes the bug that rating and divisions were not displayed in matchmaker games.

With kind regards,

BlackYps

## Balance

- (#6568) Vulthoo have been underperforming after their rework. Their biggest weak point was the excessive amount of build time required which made it impractical to make them in the earlier stages of tech 2 especially.
- Vulthoo:
- BuildTime: 3300 --> 2700

## Bug fixes

- (#6546) Fix an exploit that allows being notified of enemy Billy nuke launches.

- (#6569) Fix the matchmaker lobby not passing ratings, divisions and clan tags to the session, making them not visible in the scoreboard.


## Contributors

With thanks to the following people who contributed through coding and testing:

- Jip
- Nomander
- ETFreeman
- Clyf
17 changes: 16 additions & 1 deletion lua/ui/lobby/changelogData.lua
Original file line number Diff line number Diff line change
@@ -1,8 +1,23 @@
---@type number
last_version = 3815
last_version = 3816

---@type PatchNotes[]
gamePatches = {
{
version = 3816,
name = "Hotfix",
hasPrettyGithubRelease = true,
hasPrettyPatchnotes = false,
description = {
"# Game version 3816 (10th of December, 2024)",
"",
"This hotfix primarily fixes the bug that ratings and divisions were not displayed in matchmaker games.",
"",
"With kind regards,",
"",
"BlackYps",
},
},
{
version = 3815,
name = "Hotfix",
Expand Down
6 changes: 3 additions & 3 deletions lua/version.lua
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ local Commit = 'unknown' -- The use of `'` instead of `"` is **intentional**

--#endregion

local Version = "3815"
---@alias PATCH "3815"
---@alias VERSION "1.5.3815"
local Version = "3816"
---@alias PATCH "3816"
---@alias VERSION "1.5.3816"
---@return PATCH # Game release
function GetVersion()
LOG(string.format('Supreme Commander: Forged Alliance Lua version %s at %s (%s)', Version, GameType, Commit))
Expand Down
2 changes: 1 addition & 1 deletion mod_info.lua
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
-- - https://github.com/FAForever/fa/blob/deploy/fafdevelop/lua/MODS.LUA

name = "Forged Alliance Forever"
version = 3815 -- needs to be an integer as it is parsed as a short (16 bit integer)
version = 3816 -- needs to be an integer as it is parsed as a short (16 bit integer)
_faf_modname='faf'
copyright = "Forged Alliance Forever Community"
description = "Forged Alliance Forever extends Forged Alliance, bringing new patches, game modes, units, ladder, and much more!"
Expand Down

0 comments on commit 73ed88e

Please sign in to comment.