doc: Update node callback documentation

This commit is contained in:
kwolekr 2015-10-04 15:32:17 -04:00
parent 7b01b94c6b
commit 1f9c5a4a7b
1 changed files with 6 additions and 3 deletions

View File

@ -3219,14 +3219,17 @@ Definition tables
},
on_construct = func(pos), --[[
^ Node constructor; always called after adding node
^ Node constructor; called after adding node
^ Can set up metadata and stuff like that
^ Not called for bulk node placement (i.e. schematics and VoxelManip)
^ default: nil ]]
on_destruct = func(pos), --[[
^ Node destructor; always called before removing node
^ Node destructor; called before removing node
^ Not called for bulk node placement (i.e. schematics and VoxelManip)
^ default: nil ]]
after_destruct = func(pos, oldnode), --[[
^ Node destructor; always called after removing node
^ Node destructor; called after removing node
^ Not called for bulk node placement (i.e. schematics and VoxelManip)
^ default: nil ]]
after_place_node = func(pos, placer, itemstack, pointed_thing) --[[