mirror of
https://github.com/BlackMATov/evolved.lua.git
synced 2025-12-16 22:19:25 +07:00
restore defer_op indices
This commit is contained in:
30
evolved.lua
30
evolved.lua
@@ -3152,27 +3152,27 @@ end
|
|||||||
---@enum evolved.defer_op
|
---@enum evolved.defer_op
|
||||||
local __defer_op = {
|
local __defer_op = {
|
||||||
set = 1,
|
set = 1,
|
||||||
remove = 4,
|
remove = 2,
|
||||||
clear = 5,
|
clear = 3,
|
||||||
destroy = 6,
|
destroy = 4,
|
||||||
|
|
||||||
multi_set = 7,
|
multi_set = 5,
|
||||||
multi_remove = 10,
|
multi_remove = 6,
|
||||||
|
|
||||||
batch_set = 11,
|
batch_set = 7,
|
||||||
batch_remove = 14,
|
batch_remove = 8,
|
||||||
batch_clear = 15,
|
batch_clear = 9,
|
||||||
batch_destroy = 16,
|
batch_destroy = 10,
|
||||||
|
|
||||||
batch_multi_set = 17,
|
batch_multi_set = 11,
|
||||||
batch_multi_remove = 20,
|
batch_multi_remove = 12,
|
||||||
|
|
||||||
spawn_entity_at = 21,
|
spawn_entity_at = 13,
|
||||||
spawn_entity_with = 22,
|
spawn_entity_with = 14,
|
||||||
|
|
||||||
call_hook = 23,
|
call_hook = 15,
|
||||||
|
|
||||||
__count = 23,
|
__count = 15,
|
||||||
}
|
}
|
||||||
|
|
||||||
---@type table<evolved.defer_op, fun(bytes: any[], index: integer): integer>
|
---@type table<evolved.defer_op, fun(bytes: any[], index: integer): integer>
|
||||||
|
|||||||
Reference in New Issue
Block a user