Skip to content

Commit 0556818

Browse files
committed
Update readme
1 parent e3a579a commit 0556818

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,7 @@ sound files are found in `fortress/sound/hitaudio/` and `fortress/sound/announc
7878
* `localinfo fo_matchrated 2` whether match is rated / affects trueskill. 2 is false for 1v1 and 2v2 only.
7979
* `localinfo backend_address <uri>` to specify backend API endpoint. Default: https://www.fortressone.org/
8080
* All-time attack and all-time defence team options.
81-
* `setinfo team1color <hexcode>` to set the top and bottom colours for team 1.
82-
* `setinfo team2color <hexcode>` to set the top and bottom colours for team 2.
83-
* `setinfo team3color <hexcode>` to set the top and bottom colours for team 3.
84-
* `setinfo team4color <hexcode>` to set the top and bottom colours for team 4.
81+
* `setinfo team<n>color <color>` sets player skins colours for team <n>, where <color> is quake palette 0-15 or hex code beginning with 0x. E.g. `setinfo team1colour 0` makes all team 1 players white, `setinfo team2color 0xFF8800` makes all team 2 players orange. `setinfo team<n>color ""` to restore defaults.
8582
* `setinfo precise_grenades on/off` to enable precise timing when throwing grenades. This removes a random, up to, 100ms input delay. (default on)
8683
* `localinfo forcereload 0/1` Option to prevent forced reloads.
8784
* `+grenade1` and `+grenade2` grenade buttons (more reliable than impulses), push to prime, again to throw.

csqc/main.qc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -621,6 +621,7 @@ static void UpdateTeamColorCrosshair() {
621621
break;
622622
case 4:
623623
crosshair_color = "0x00ff00";
624+
break;
624625
}
625626
localcmd("crosshaircolor ", crosshair_color, "\n");
626627
crosshair_team_no = team_no;

0 commit comments

Comments
 (0)