command was still commented out

command was not included
master
Och Noe 2020-08-12 19:26:40 +02:00
parent 691b661404
commit 717f418ea2
1 changed files with 15 additions and 9 deletions

View File

@ -355,15 +355,15 @@ minetest.register_chatcommand('tw_push', {
}
)
-- minetest.register_chatcommand('wp_push', {
-- params = '<position/player>',
-- description = 'teleport to a position/player and save old position',
-- func = safe(function(param)
-- stack_push()
-- minetest.run_server_chatcommand('teleport', param)
-- end),
-- }
-- )
minetest.register_chatcommand('wp_push', {
params = '<position/player>',
description = 'teleport to a position/player and save old position',
func = safe(function(param)
stack_push()
minetest.run_server_chatcommand('teleport', param)
end),
}
)
minetest.register_chatcommand('tw_pop', {
params = '',
@ -372,6 +372,12 @@ minetest.register_chatcommand('tw_pop', {
}
)
minetest.register_chatcommand('wp_pop', {
params = '',
description = 'return to the last saved position',
func = stack_pop,
}
)
minetest.register_chatcommand('wp_stack', {
params = '',