[General] Update changelog

This commit is contained in:
FutureRave 2022-05-04 12:49:03 +01:00
parent 8d31466fc5
commit bf0ea14fde
No known key found for this signature in database
GPG Key ID: E883E2BC9657D955
2 changed files with 3 additions and 1 deletions

View File

@ -20,7 +20,9 @@ The format is based on [Keep a Changelog v0.3.0](http://keepachangelog.com/en/0.
### Changed
- Test clients' native functionality has been restored by default (#162)
- Renamed GSC method `isBot` to `IsTestClient` (#162)
- Custom GSC functions can be called correctly from a game script (#216)
- GSC functions `HttpCancel` and `HttpCancel` require the game to be launched with the command line argument `scriptablehttp` (#162)
- Master server list will be used instead of the node system (load server list faster) (#234)
### Fixed

View File

@ -306,7 +306,7 @@ namespace Components
Game::Scr_AddBool(Utils::String::EndsWith(s1, s2));
});
Script::AddFunction("IsArray", []
Script::AddFunction("IsArray", [] // gsc: IsArray(<object>)
{
const auto type = Game::Scr_GetType(0);