File tree Expand file tree Collapse file tree 3 files changed +3
-7
lines changed Expand file tree Collapse file tree 3 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -3225,10 +3225,7 @@ void () ClientConnect = {
3225
3225
// Set skin colours
3226
3226
local entity te = find(world, classname, "player");
3227
3227
while (te != world) {
3228
- if (te != self) {
3229
- SetSkinInfoFor(self, te);
3230
- }
3231
-
3228
+ SetSkinInfoFor(self, te);
3232
3229
te = find(te, classname, "player");
3233
3230
}
3234
3231
Original file line number Diff line number Diff line change @@ -1178,9 +1178,9 @@ void (entity player) TeamFortress_SetSkinInfos = {
1178
1178
1179
1179
local string col = TeamFortress_TeamGetColor(player.team_no);
1180
1180
forceinfokey(player, "bottomcolor", col);
1181
- stuffcmd(player, sprintf("setinfo bottomcolor %s\n", col));
1181
+ /* stuffcmd(player, sprintf("setinfo bottomcolor %s\n", col)); */
1182
1182
forceinfokey(player, "topcolor", col);
1183
- stuffcmd(player, sprintf("setinfo topcolor %s\n", col));
1183
+ /* stuffcmd(player, sprintf("setinfo topcolor %s\n", col)); */
1184
1184
1185
1185
local entity te = find(world, classname, "player");
1186
1186
while (te != world) {
Original file line number Diff line number Diff line change @@ -339,7 +339,6 @@ void (entity player) TeamFortress_CheckTeamCheats = {
339
339
if ((player.team_no > 0) && (teamplay > 0)) {
340
340
st = infokey(player, "bottomcolor");
341
341
if (st != TeamFortress_TeamGetColor(player.team_no)) {
342
- bprint(PRINT_HIGH, "INHERE!\n");
343
342
TeamFortress_SetSkin(player);
344
343
}
345
344
if (player.playerclass != 0) {
You can’t perform that action at this time.
0 commit comments