Skip to content

Commit 99691ed

Browse files
committed
Update changelog and bump version to 2.6.2
Also added some info for the new commands.
1 parent bf5d486 commit 99691ed

File tree

4 files changed

+25
-2
lines changed

4 files changed

+25
-2
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# Changelog
22

3+
## [2.6.2] - 2024-10-21
4+
5+
### New
6+
7+
- Added `callvote` command as an alias for `vote`.
8+
- Added `sv_ag_disabled_votes` CVar, which sets what votes are disabled on the server. For example: `sv_ag_disabled_votes "agstart;agabort"` will disable `agstart` and `agabort`.
9+
10+
### Improved
11+
12+
- Now game modes can be disabled on the fly when using `sv_ag_allowed_gamemodes` (no need to wait for map restart).
13+
- Now `mp_respawn_fix` is enabled by default in `startup_server.cfg`. No reason to keep this fix disabled which improves fairness.
14+
- If you need to adjust the respawn time, use `mp_respawn_delay`, which is set to 0.95. This is the fastest spawn time at 125 FPS with the old behavior.
15+
16+
### Fixed
17+
18+
- Fixed `agnextmode` not working as expected:
19+
- Don't allow voting with an empty argument or modes that don't exist.
20+
- It will no longer change the map when accepted or called as an admin, which defeated the purpose of setting a next map for the server.
21+
- Fixed some misspellings in the translations.
22+
323
## [2.6.1] - 2024-09-24
424

525
### Fixed
@@ -135,6 +155,7 @@ Now the mod has an [official website](https://rtxa.github.io/agmodx) made with D
135155
- Arcade not setting armor on player spawn.
136156
- Invalid private data when a player leaves before he has fully joined.
137157

158+
[2.6.2]: https://github.com/rtxa/agmodx/compare/2.6.1...2.6.2
138159
[2.6.1]: https://github.com/rtxa/agmodx/compare/2.6...2.6.1
139160
[2.6]: https://github.com/rtxa/agmodx/compare/beta-2.5.2...2.6
140161
[Beta 2.5.2]: https://github.com/rtxa/agmodx/compare/beta-2.5.1...beta-2.5.2

valve/addons/amxmodx/scripting/include/agmodx_const.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#endif
44
#define _agmodx_const_included
55

6-
#define AGMODX_VERSION "2.6.1"
6+
#define AGMODX_VERSION "2.6.2"
77

88
// array size of some gamemode cvars
99
#define SIZE_WEAPONS 14

website/docs/guides/commands.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,8 @@ All game modes (TDM, Arena, etc.) are already included in the vote list.
9595
* `sv_ag_vote_start 1` — Allow vote agstart.
9696
* `sv_ag_vote_allow 1` — Allow vote agallow.
9797
* `sv_ag_vote_failed_time 15` — Cooldown for next vote if previous one failed.
98+
* `sv_ag_vote_allow_bots 0` — Allow bots to vote. Debug purposes only.
99+
* `sv_ag_disabled_votes` — Set what votes are disabled. For example: `sv_ag_disabled_votes "agstart;agabort"` will disable `agstart` and `agabort`.
98100
* <Badge type='deprecated'/> `sv_ag_vote_admin 0` — Allow vote for player admin. Dropped in favour of AMXX admin system.
99101

100102
**Multiplayer**

website/src/_constants.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const AGMODX_VERSION = '2.6.1';
1+
export const AGMODX_VERSION = '2.6.2';

0 commit comments

Comments
 (0)