Skip to content

Commit

Permalink
Merge branch 'build-better' into staging
Browse files Browse the repository at this point in the history
  • Loading branch information
drzel committed Sep 15, 2024
2 parents bfaa264 + e24f5fb commit e9d761f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion csqc/main.qc
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ noref void(float apiver, string enginename, float enginever) CSQC_Init = {
precache_model("progs/turrpreview.mdl");
sentry_preview = spawn();
setmodel(sentry_preview, "progs/turrpreview.mdl");
sentry_preview.alpha = 0.5;
sentry_preview.alpha = 0.25;

precache_model("progs/sphere.mdl");
sentry_preview_range_sphere = spawn();
Expand Down
2 changes: 1 addition & 1 deletion ssqc/engineer.qc
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ void (float objtobuild, float offset) TeamFortress_Build = {
tmp2 = newmis.origin - normalize(v_up) * 128;
traceline(tmp1, tmp2, 1, world);
if (trace_ent != world) {
sprint(self, PRINT_HIGH, "You cannot build here\n");
sprint(self, PRINT_HIGH, "You can't build here\n");
dremove(newmis);
return;
}
Expand Down

0 comments on commit e9d761f

Please sign in to comment.