Big net::msg conversion

This commit is contained in:
iikorni
2026-08-30 12:38:12 -05:00
parent 216dd1aecd
commit df2b863d72
36 changed files with 2860 additions and 2764 deletions
+3 -3
View File
@@ -259,10 +259,10 @@ void V_ParseDamage(void) {
float side;
float count;
armor = MSG_ReadByte();
blood = MSG_ReadByte();
armor = net_message.read_byte().value();
blood = net_message.read_byte().value();
for (i = 0; i < 3; i++)
from[i] = MSG_ReadCoord(cl.protocolflags);
from[i] = net_message.read_coord(static_cast<net::rmq_flags>(cl.protocolflags)).value();
count = blood * 0.5 + armor * 0.5;
if (count < 10)