Skip to content

Commit 6fcf641

Browse files
committed
fix: simulation time decoder tickrate
1 parent 905ddfc commit 6fcf641

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/demoinfocs/sendtables2/field_decoder.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ func runeTimeDecoder(r *reader) interface{} {
327327
}
328328

329329
func simulationTimeDecoder(r *reader) interface{} {
330-
return float32(r.readVarUint32()) * (1.0 / 30)
330+
return float32(r.readVarUint32()) * (1.0 / 64)
331331
}
332332

333333
func readBitCoordPres(r *reader) float32 {

0 commit comments

Comments
 (0)