X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fcommon%2Fwepent.qc;h=9488c4c2c6bc0927a3ba8b30eebeb96baf9a2ccc;hb=a04a0bc093b1d181012cc562e25581b59de69395;hp=1b9abdbf0ecb4f1ae694cff46164dc417a5df38d;hpb=ceea8405790b1bc1ac91b3c382884ebaeafcbcac;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/common/wepent.qc b/qcsrc/common/wepent.qc index 1b9abdbf0..9488c4c2c 100644 --- a/qcsrc/common/wepent.qc +++ b/qcsrc/common/wepent.qc @@ -26,6 +26,10 @@ MACRO_END { WriteByte(chan, this.vortex_charge * 255); }, \ { (viewmodels[this.m_wepent_slot]).vortex_charge = ReadByte() / 255; }) \ \ + PROP(false, oknex_charge, WEPENT_SET_NORMAL, \ + { WriteByte(chan, this.oknex_charge * 16); }, \ + { (viewmodels[this.m_wepent_slot]).oknex_charge = ReadByte() / 16; }) \ + \ PROP(false, m_gunalign, WEPENT_SET_NORMAL, \ { WriteByte(chan, this.m_gunalign); }, \ { (viewmodels[this.m_wepent_slot]).m_gunalign = ReadByte(); }) \ @@ -58,7 +62,11 @@ MACRO_END { WriteByte(chan, this.vortex_chargepool_ammo * 16); }, \ { (viewmodels[this.m_wepent_slot]).vortex_chargepool_ammo = ReadByte() / 16; }) \ \ - PROP(false, clip_load, WEPENT_SET_NORMAL, \ + PROP(false, oknex_chargepool_ammo, WEPENT_SET_NORMAL, \ + { WriteByte(chan, this.oknex_chargepool_ammo * 16); }, \ + { (viewmodels[this.m_wepent_slot]).oknex_chargepool_ammo = ReadByte() / 16; }) \ + \ + PROP(false, clip_load, WEPENT_SET_NORMAL, \ { WriteShort(chan, this.clip_load); }, \ { (viewmodels[this.m_wepent_slot]).clip_load = ReadShort(); }) \ \