From ca4508ec23fd84e3e62aeeb165b756cd734daa59 Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 9 Feb 2017 00:28:33 +1000 Subject: [PATCH] Fix bumblebee using the same field for owner and attack type --- qcsrc/common/vehicles/vehicle/bumblebee_weapons.qc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qcsrc/common/vehicles/vehicle/bumblebee_weapons.qc b/qcsrc/common/vehicles/vehicle/bumblebee_weapons.qc index 9cb8b74c2..889ca4715 100644 --- a/qcsrc/common/vehicles/vehicle/bumblebee_weapons.qc +++ b/qcsrc/common/vehicles/vehicle/bumblebee_weapons.qc @@ -60,9 +60,9 @@ NET_HANDLE(ENT_CLIENT_BUMBLE_RAYGUN, bool isnew) { this.cnt = ReadByte(); this.team = ReadByte(); - this.cnt = ReadByte(); + this.count = ReadByte(); - if(this.cnt) + if(this.count) this.colormod = '1 0 0'; else this.colormod = '0 1 0'; -- 2.39.2