From 4256d4b4294ed64ef98ca6e31b20aad946f91c82 Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 28 Feb 2018 04:11:07 +1000 Subject: [PATCH] Make arc heat crosshair ring smooth --- qcsrc/common/wepent.qc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qcsrc/common/wepent.qc b/qcsrc/common/wepent.qc index 3da8b8939..1b9abdbf0 100644 --- a/qcsrc/common/wepent.qc +++ b/qcsrc/common/wepent.qc @@ -51,8 +51,8 @@ MACRO_END { (viewmodels[this.m_wepent_slot]).minelayer_mines = ReadByte(); }) \ \ PROP(false, arc_heat_percent, WEPENT_SET_NORMAL, \ - { WriteByte(chan, this.arc_heat_percent * 16); }, \ - { (viewmodels[this.m_wepent_slot]).arc_heat_percent = ReadByte() / 16; }) \ + { WriteByte(chan, this.arc_heat_percent * 255); }, \ + { (viewmodels[this.m_wepent_slot]).arc_heat_percent = ReadByte() / 255; }) \ \ PROP(false, vortex_chargepool_ammo, WEPENT_SET_NORMAL, \ { WriteByte(chan, this.vortex_chargepool_ammo * 16); }, \ -- 2.39.2