diff --git a/CHANGELOG.md b/CHANGELOG.md index b3065d9..7d15955 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +# 3.6.1 +- Fixed issue with flag `server_side_projectiles` being inverted in `serve` command +- Added new insert button to UI, allows to insert a package from a local folder +- Added update indicator to UI, helps to see when a new package update is available + # 3.6.0 - Fixed issue with path splitting causing problems with repetitive pattern paths - Fixed issue with `build` command not filtering properly specific scenarios to build diff --git a/cmd/serve.lua b/cmd/serve.lua index 61cc8ac..08b59ce 100644 --- a/cmd/serve.lua +++ b/cmd/serve.lua @@ -129,7 +129,7 @@ local function serve(map, gametype, port, template, scripts, isUsingNewDataPath, sv_name = map, sv_rcon = config.rcon and 1 or 0, sv_rcon_password = config.rcon_password or "merc", - allow_client_side_weapon_projectiles = config.server_side_projectiles and 1 or 0 + allow_client_side_weapon_projectiles = config.server_side_projectiles and 0 or 1 } writeFile(loadFilePath, string.format(load, map, map, gametype)) writeFile(initFilePath, table.concat(init, "\n")) diff --git a/modules/constants.lua b/modules/constants.lua index 1aeeb6a..d7b2d6f 100644 --- a/modules/constants.lua +++ b/modules/constants.lua @@ -1,6 +1,6 @@ local constants = {} -constants.mercuryVersion = "3.6.0" +constants.mercuryVersion = "3.6.1" constants.latestReleaseApi = "https://api.github.com/repos/Sledmine/Mercury/releases/latest" constants.githubPass = "http://githubpass.shadowmods.net" constants.mercuryWeb = "https://mercury.shadowmods.net"