Skip to content

Commit e24f5fb

Browse files
committed
make sentry preview a bit more transparent
1 parent 6cb97a2 commit e24f5fb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

csqc/main.qc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ noref void(float apiver, string enginename, float enginever) CSQC_Init = {
217217
precache_model("progs/turrpreview.mdl");
218218
sentry_preview = spawn();
219219
setmodel(sentry_preview, "progs/turrpreview.mdl");
220-
sentry_preview.alpha = 0.5;
220+
sentry_preview.alpha = 0.25;
221221

222222
precache_model("progs/sphere.mdl");
223223
sentry_preview_range_sphere = spawn();

ssqc/engineer.qc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,7 @@ void (float objtobuild, float offset) TeamFortress_Build = {
576576
tmp2 = newmis.origin - normalize(v_up) * 128;
577577
traceline(tmp1, tmp2, 1, world);
578578
if (trace_ent != world) {
579-
sprint(self, PRINT_HIGH, "You cannot build here\n");
579+
sprint(self, PRINT_HIGH, "You can't build here\n");
580580
dremove(newmis);
581581
return;
582582
}

0 commit comments

Comments
 (0)