Skip to content

Commit eaecdce

Browse files
committed
don't send stuffs, remove debug
1 parent e3c52d6 commit eaecdce

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

ssqc/client.qc

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3225,10 +3225,7 @@ void () ClientConnect = {
32253225
// Set skin colours
32263226
local entity te = find(world, classname, "player");
32273227
while (te != world) {
3228-
if (te != self) {
3229-
SetSkinInfoFor(self, te);
3230-
}
3231-
3228+
SetSkinInfoFor(self, te);
32323229
te = find(te, classname, "player");
32333230
}
32343231

ssqc/tfort.qc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1178,9 +1178,9 @@ void (entity player) TeamFortress_SetSkinInfos = {
11781178

11791179
local string col = TeamFortress_TeamGetColor(player.team_no);
11801180
forceinfokey(player, "bottomcolor", col);
1181-
stuffcmd(player, sprintf("setinfo bottomcolor %s\n", col));
1181+
/* stuffcmd(player, sprintf("setinfo bottomcolor %s\n", col)); */
11821182
forceinfokey(player, "topcolor", col);
1183-
stuffcmd(player, sprintf("setinfo topcolor %s\n", col));
1183+
/* stuffcmd(player, sprintf("setinfo topcolor %s\n", col)); */
11841184

11851185
local entity te = find(world, classname, "player");
11861186
while (te != world) {

ssqc/tforttm.qc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,6 @@ void (entity player) TeamFortress_CheckTeamCheats = {
339339
if ((player.team_no > 0) && (teamplay > 0)) {
340340
st = infokey(player, "bottomcolor");
341341
if (st != TeamFortress_TeamGetColor(player.team_no)) {
342-
bprint(PRINT_HIGH, "INHERE!\n");
343342
TeamFortress_SetSkin(player);
344343
}
345344
if (player.playerclass != 0) {

0 commit comments

Comments
 (0)