@mu-online-js/mu-packet-manager
Advanced tools
Comparing version 0.0.8 to 0.0.9
@@ -87,3 +87,3 @@ /** | ||
case 'arrayPadding': | ||
objectToStore[key] = 0xC1; | ||
//objectToStore[key] = 0xC1; | ||
this.currentOffset++; | ||
@@ -109,7 +109,7 @@ break; | ||
objectToStore[key] = this.buf.readUInt16BE(this.currentOffset); | ||
this.currentOffset++; | ||
this.currentOffset += 2; | ||
break; | ||
case 'shortLE': | ||
objectToStore[key] = this.buf.readUInt16LE(this.currentOffset); | ||
this.currentOffset++; | ||
this.currentOffset += 2; | ||
break; | ||
@@ -116,0 +116,0 @@ case 'dword': |
{ | ||
"name": "@mu-online-js/mu-packet-manager", | ||
"version": "0.0.8", | ||
"version": "0.0.9", | ||
"description": "It allows you to define packet structures in a single place and easily convert between buffer and object representations of these structures.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
10447