Skip to content

Commit

Permalink
Merge pull request #1026 from splewis/fix_cvar_load_with_veto_mode
Browse files Browse the repository at this point in the history
0.14.7
  • Loading branch information
nickdnk authored May 6, 2023
2 parents f313c28 + 65f044c commit d45e457
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ Whenever you update your Get5 plugin, remember to **always** update the `transla
Please see the [installation instructions](https://splewis.github.io/get5/latest/installation/#installation) for
details.

# 0.14.7

#### 2023-05-06

Bugfix.

1. Fix missing loading of `cvars` if also using `veto_mode` with a KeyValues match configuration.

# 0.14.6

#### 2023-04-29
Expand Down
1 change: 1 addition & 0 deletions scripting/get5/matchconfig.sp
Original file line number Diff line number Diff line change
Expand Up @@ -964,6 +964,7 @@ static bool LoadMatchFromKeyValue(KeyValues kv, char[] error) {
if (!LoadVetoDataKeyValues(kv, error)) {
return false;
}
kv.GoBack();
} else {
GenerateDefaultVetoSetup(g_MapPoolList, g_MapBanOrder, g_NumberOfMapsInSeries, g_LastVetoTeam);
}
Expand Down
2 changes: 1 addition & 1 deletion scripting/get5/version.sp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#define PLUGIN_VERSION "0.14.6-dev"
#define PLUGIN_VERSION "0.14.7-dev"
// This MUST be the latest version in x.y.z semver format followed by -dev.
// If this is not consistently applied, the update-checker might malfunction.
// In official releases, the CI flow will remove the -dev suffix when compiling the plugin.
Expand Down

0 comments on commit d45e457

Please sign in to comment.