X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=qcsrc%2Fcommon%2Fwepent.qc;h=5e78207d4a7986ea754e0a0dc692e96d86b391c1;hp=38ef3bd1f7d4c5303e5f639f5c6306711d1385ba;hb=717defe5e02506bb5c857025d71fb605d6eb8c55;hpb=eb5aac3757e45db2f8b8a685691b51228c03f7a2 diff --git a/qcsrc/common/wepent.qc b/qcsrc/common/wepent.qc index 38ef3bd1f7..5e78207d4a 100644 --- a/qcsrc/common/wepent.qc +++ b/qcsrc/common/wepent.qc @@ -8,15 +8,15 @@ MACRO_END #define WEPENT_NETPROPS(PROP) PROP(false, sv_entnum, WEPENT_SET_NORMAL, {}, {}) /* sentinel */ \ PROP(false, m_switchweapon, WEPENT_SET_NORMAL, \ { WriteByte(chan, this.m_switchweapon.m_id); }, \ - { (viewmodels[this.m_wepent_slot]).switchweapon = Weapons_from(ReadByte()); }) \ + { (viewmodels[this.m_wepent_slot]).switchweapon = REGISTRY_GET(Weapons, ReadByte()); }) \ \ PROP(false, m_switchingweapon, WEPENT_SET_NORMAL, \ { WriteByte(chan, this.m_switchingweapon.m_id); }, \ - { (viewmodels[this.m_wepent_slot]).switchingweapon = Weapons_from(ReadByte()); }) \ + { (viewmodels[this.m_wepent_slot]).switchingweapon = REGISTRY_GET(Weapons, ReadByte()); }) \ \ PROP(false, m_weapon, WEPENT_SET_NORMAL, \ { WriteByte(chan, this.m_weapon.m_id); }, \ - { (viewmodels[this.m_wepent_slot]).activeweapon = Weapons_from(ReadByte()); }) \ + { (viewmodels[this.m_wepent_slot]).activeweapon = REGISTRY_GET(Weapons, ReadByte()); }) \ \ PROP(false, m_alpha, WEPENT_SET_NORMAL, \ { WriteByte(chan, rint(bound(-1, 254 * this.m_alpha, 254) - -1)); }, \