fix(object): correct flag check in spline reader

This commit is contained in:
fallenoak 2026-01-12 20:32:49 -06:00
parent 4114f1ee16
commit 8333530d65
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D

View File

@ -9,7 +9,7 @@ CDataStore& operator>>(CDataStore& msg, CMoveSpline& spline) {
msg.Get(spline.face.facing); msg.Get(spline.face.facing);
} else if (spline.flags & 0x10000) { } else if (spline.flags & 0x10000) {
msg.Get(spline.face.guid); msg.Get(spline.face.guid);
} else { } else if (spline.flags & 0x8000) {
msg >> spline.face.spot; msg >> spline.face.spot;
} }