From 48ec5b88f3f049cd8047bfa8f7f35e9b03ced811 Mon Sep 17 00:00:00 2001 From: Adam Olsen Date: Fri, 27 Jul 2001 15:32:03 +0000 Subject: [PATCH] Add using indent to TODO, and a tiny little comment change --- TODO | 1 + field.qc | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/TODO b/TODO index 30a3791..16f5b88 100644 --- a/TODO +++ b/TODO @@ -12,3 +12,4 @@ o various drop items X move from *preqcc to cpp o add more variety to tinkering o add a way to edit the respawn ammo entities +o try using indent again diff --git a/field.qc b/field.qc index 78b3c22..79414f5 100644 --- a/field.qc +++ b/field.qc @@ -562,7 +562,7 @@ void(entity gen1, entity gen2) Create_Field = // set pos and size tfield.size_x = vlen (gen1.origin - gen2.origin) - 10; tfield.size_y = 4; - tfield.size_z = 48; // was 64, but this looks more realistic + tfield.size_z = 48; // was 64, but 48 is more realistic tfield.maxs = tfield.size * 0.5; // FIXME: / 2 is broken tfield.mins = -tfield.maxs; tfield.origin = gen1.origin + (gen2.origin - gen1.origin) * 0.5;