From e1cd5766d537ec4082757b8d93bff69b4e2fa2df Mon Sep 17 00:00:00 2001 From: Edo Date: Wed, 3 May 2023 13:29:17 +0100 Subject: [PATCH] [General]: Prepare new release (#998) --- CHANGELOG.md | 25 ++++++++++++++++++++++--- src/Components/Modules/Bots.cpp | 3 --- 2 files changed, 22 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc8160df..c232ce76 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,25 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog v0.3.0](http://keepachangelog.com/en/0.3.0/). +## r4246 - 2023-05-03 + +### Added + +- Add to the iw4x-rawfiles common_scripts\utility GSC script `setPing` & `getPing` for backward compatibility. + +### Fixed + +- Fix bug with Steam Proxy (#991) +- Fix bug with the `say` GSC notify in regards to hidden commands (#989) + +### Removed + +- SetPing GSC method (#998) + +### Known issues + +- Sound issue fix is experimental as the bug is not fully understood. + ## r4226 - 2023-04-26 ### Changed @@ -267,12 +286,12 @@ The format is based on [Keep a Changelog v0.3.0](http://keepachangelog.com/en/0. - Add `EnableWeaponPickup` GSC method (#329) - Add `protect-saved-dvars` command line argument (#335) - Add `clanName` dvar. Can be edited in the `barracks` menu (#361) -- Add DLC9 containing classic maps from CoD4: Backlot, Chinatown, Winter Crash, Pipeline and Downpour -- Add to the iw4x-rawfiles `common_scripts\iw4x_utility` GSC script, it contains the scripts-based solution for the removed GSC built-in methods +- Add DLC9 containing classic maps from CoD4: Backlot, Chinatown, Winter Crash, Pipeline and Downpour. +- Add to the iw4x-rawfiles `common_scripts\iw4x_utility` GSC script, it contains the scripts-based solution for the removed GSC built-in methods. ### Changed -- `sv_mapRotationCurrent` functionality has been restored for backwards compatibility (#328) +- `sv_mapRotationCurrent` functionality has been restored for backward compatibility (#328) - GSC IO Functions are restricted to the `scriptdata` folder (#322) - `scriptablehttp` command line argument is no longer needed (#322) diff --git a/src/Components/Modules/Bots.cpp b/src/Components/Modules/Bots.cpp index dcb26b50..1eb60f70 100644 --- a/src/Components/Modules/Bots.cpp +++ b/src/Components/Modules/Bots.cpp @@ -272,9 +272,6 @@ namespace Components g_botai[entref.entnum].right = static_cast(rightInt); g_botai[entref.entnum].active = true; }); - - GSC::Script::AddMethod("SetPing", []([[maybe_unused]] const Game::scr_entref_t entref) - {}); } void Bots::BotAiAction(Game::client_t* cl)