Skip to content

Commit

Permalink
1.0.2a-1
Browse files Browse the repository at this point in the history
Dressed up the lines to have Technical Pause stand alone.
  • Loading branch information
killshotzz committed Jan 7, 2022
1 parent 256fc64 commit b463a43
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions addons/sourcemod/scripting/PausePlugin.sp
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,13 @@ public void OnPluginStart() {
/** Pause Commands **/
RegConsoleCmd("sm_pause", Command_Pause, "Requests a pause");
RegConsoleCmd("sm_p", Command_Pause, "Requests a pause");
RegConsoleCmd("sm_tech", Command_TechPause, "Calls for a tech pause");
RegConsoleCmd("sm_t", Command_Pause, "Requests a pause");
RegConsoleCmd("sm_tac", Command_Pause, "Requests a pause");
RegConsoleCmd("sm_tactical", Command_Pause, "Requests a pause");

/** Technical Pause Commands **/
RegConsoleCmd("sm_tech", Command_TechPause, "Calls for a tech pause");
RegConsoleCmd("sm_t", Command_TechPause, "Requests a pause");

/** Unpause Commands **/
RegConsoleCmd("sm_unpause", Command_Unpause, "Requests an unpause");
RegConsoleCmd("sm_up", Command_Unpause, "Requests an unpause");
Expand Down

0 comments on commit b463a43

Please sign in to comment.