Skip to content

Commit

Permalink
Fix /life & /center commands.
Browse files Browse the repository at this point in the history
  • Loading branch information
alek13 committed Jun 13, 2024
1 parent 6246563 commit 63401cb
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion minetest.conf.prod
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,8 @@ lp_api.router.cmd = true

# добавлено при реализации `/death`
common_spawn_pos = 735, 33, -818
hall_of_life_pos = 735, 33, -818
#hall_of_life_pos = 735, 33, -818
hall_of_center_pos = 735, 33, -818
hall_of_death_pos = 11773, 54, -10282
# спауны для рас ( GH: #330 )
dynamic_spawn = true
Expand Down
4 changes: 3 additions & 1 deletion mods/lord/World/lord_spawn/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,9 @@ spawn.register_hall("death", "Death")
--spawn.register_hall("life", "Life")
minetest.register_chatcommand("life", {
description = SL("Teleport to the Hall of Life"),
func = function(_, _) return SL("Command reserved. For teleporting to Old Central Spawn use command `/center`") end
func = function(_, _)
return true, SL("Command reserved. For teleporting to Old Central Spawn use command `/center`")
end
})

minetest.register_on_newplayer(function(obj)
Expand Down
1 change: 1 addition & 0 deletions mods/lord/World/lord_spawn/locale/lord_spawn.en.tr
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ Teleporting to the Hall of Life...=Teleporting to the Hall of Life...
Teleporting to the Hall of Death...=Teleporting to the Hall of Death...
Teleporting to the Hall of Dol Guldur...=Teleporting to the Dol Guldur...
Teleport failed=Teleport failed
Command reserved. For teleporting to Old Central Spawn use command `/center`=Command reserved. For teleporting to Old Central Spawn use command `/center`
1 change: 1 addition & 0 deletions mods/lord/World/lord_spawn/locale/lord_spawn.ru.tr
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ Teleporting to the Hall of Life...=Производится перемещени
Teleporting to the Hall of Death...=Производится перемещение в Зал Смерти...
Teleporting to the Hall of Dol Guldur...=Производится перемещение в Дол Гулдур...
Teleport failed=Не удалось переместиться
Command reserved. For teleporting to Old Central Spawn use command `/center`=Команда зарезервирована. Для телепортации в Старый центральный Спаун используйте команду `/center`

0 comments on commit 63401cb

Please sign in to comment.