Skip to content

Commit

Permalink
remove m_flTotalMoveSpeed
Browse files Browse the repository at this point in the history
  • Loading branch information
Sicdex committed Dec 11, 2024
1 parent 980ed74 commit ac896a8
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions wrapper/Managers/EntityManagerLogic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -311,17 +311,15 @@ function ParseEntityUpdate(

function ParseEntityPacket(stream: ViewBinaryStream): void {
EventsSDK.emit("PreDataUpdate", false)
const nativeChanges: [number, number, number][] = []
const nativeChanges: [number, number][] = []
while (!stream.Empty()) {
const entID = stream.ReadUint16()
if (entID === 0) {
break
}
nativeChanges.push([
entID,
stream.ReadInt32(), // m_iHealthBarOffset,
// m_flTotalMoveSpeed
stream.ReadFloat32() // delete this after cherry pick with commit "debug_modifiers"
stream.ReadInt32() // m_iHealthBarOffset
])
}
const createdEntities: Entity[] = [],
Expand Down

0 comments on commit ac896a8

Please sign in to comment.