Files
legacy-version/legacyver/proto/entity_metadata.go
2025-12-11 12:24:48 +07:00

18 lines
233 B
Go

package proto
func EntityDataFlagsLength(protoID int32) int {
if protoID >= ID898 {
return 127
}
if protoID >= ID844 {
return 126
}
if protoID >= ID818 {
return 125
}
if protoID >= ID786 {
return 123
}
return 120
}