We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8cb24c commit 5441a8bCopy full SHA for 5441a8b
datatables.go
@@ -13,11 +13,11 @@ import (
13
14
const (
15
maxEdictBits = 11
16
- entityHandleIndexMask = ((1 << maxEdictBits) - 1)
+ entityHandleIndexMask = (1 << maxEdictBits) - 1
17
entityHandleSerialNumberBits = 10
18
entityHandleBits = maxEdictBits + entityHandleSerialNumberBits
19
invalidEntityHandle = (1 << entityHandleBits) - 1
20
- maxEntities = (1 << maxEdictBits)
+ maxEntities = 1 << maxEdictBits
21
maxPlayers = 64
22
maxWeapons = 64
23
)
0 commit comments