From 5914684e21fc7baa07343a85dd3593c3c5464d07 Mon Sep 17 00:00:00 2001 From: Finny Merrill Date: Sun, 1 Feb 2004 10:30:06 +0000 Subject: [PATCH] Pent and quad now glow red and blue (part 1 of update to TF 2.9) --- items.qc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/items.qc b/items.qc index a7bff75..3e8ac4a 100644 --- a/items.qc +++ b/items.qc @@ -1688,6 +1688,7 @@ void() item_artifact_invulnerability = setmodel (self, "progs/invulner.mdl"); self.netname = "Pentagram of Protection"; self.items = IT_INVULNERABILITY; + self.effects |= EF_BLUE; setsize (self, '-16 -16 -24', '16 16 32'); StartItem (); }; @@ -1764,6 +1765,7 @@ void() item_artifact_super_damage = setmodel (self, "progs/quaddama.mdl"); self.netname = "Quad Damage"; self.items = IT_QUAD; + self.effects |= EF_BLUE; setsize (self, '-16 -16 -24', '16 16 32'); StartItem (); };