1
0
mirror of https://github.com/minetest/minetest_game.git synced 2025-07-16 04:30:22 +02:00

Screwdriver: disallow rotation with on_rotate = false

Other screwdriver mods, or mods that cause rotation, might operate without the screwdriver mod loaded and have `screwdriver.disallow` unavailable.
This allows nodes to default to full-disallow rather than full-rotation in such a situation.
This commit is contained in:
Tim
2016-08-05 12:14:33 +02:00
committed by rubenwardy
parent 60cf3f85b6
commit 20fa037313
2 changed files with 2 additions and 1 deletions

View File

@ -348,7 +348,7 @@ To use it, add the `on_screwdriver` function to the node definition.
* `new_param2` the new value of param2 that would have been set if on_rotate wasn't there
* return value: false to disallow rotation, nil to keep default behaviour, true to allow
it but to indicate that changed have already been made (so the screwdriver will wear out)
* use `on_rotate = screwdriver.disallow` to always disallow rotation
* use `on_rotate = false` to always disallow rotation
* use `on_rotate = screwdriver.rotate_simple` to allow only face rotation