Skip to content

Commit

Permalink
0.7.11 | fix: Help command and playout
Browse files Browse the repository at this point in the history
  • Loading branch information
shobhit-pathak committed May 19, 2024
1 parent 3970860 commit ae597e5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
- Fixed overtime getting automatically enabled even if turned off in `live.cfg`
- Added `matchzy_show_credits_on_match_start` config convar to toggle 'MatchZy Plugin by WD-' message on match start.
- Added gradient while printing `KNIFE!` and `LIVE!` message.
- Added `.pip` alias for `.traj` command to toggle `sv_grenade_trajectory_prac_pipreview` in practice mode.

# 0.7.10

Expand Down
1 change: 1 addition & 0 deletions MatchZy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ public override void Load(bool hotReload) {
{ ".solid", OnSolidCommand },
{ ".impacts", OnImpactsCommand },
{ ".traj", OnTrajCommand },
{ ".pip", OnTrajCommand },
{ ".god", OnGodCommand },
{ ".ff", OnFastForwardCommand },
{ ".fastforward", OnFastForwardCommand },
Expand Down
1 change: 1 addition & 0 deletions PracticeMode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1525,6 +1525,7 @@ public void OnImpactsCommand(CCSPlayerController? player, CommandInfo? command)
}

[ConsoleCommand("css_traj", "Toggles sv_grenade_trajectory_prac_pipreview in practice mode")]
[ConsoleCommand("css_pip", "Toggles sv_grenade_trajectory_prac_pipreview in practice mode")]
public void OnTrajCommand(CCSPlayerController? player, CommandInfo? command)
{
if (!isPractice || !IsPlayerValid(player)) return;
Expand Down

0 comments on commit ae597e5

Please sign in to comment.