mirror of
https://codeberg.org/tenplus1/teleport_potion.git
synced 2025-03-15 06:01:24 +00:00
Code tidy
This commit is contained in:
parent
5d74e552f9
commit
2eccef244d
1 changed files with 3 additions and 3 deletions
6
init.lua
6
init.lua
|
@ -119,7 +119,7 @@ minetest.register_node("teleport_potion:potion", {
|
|||
newmeta:set_string("text", fields.text)
|
||||
|
||||
-- portal open effect and sound
|
||||
effect(pos)
|
||||
tp_effect(pos)
|
||||
|
||||
minetest.sound_play("portal_open", {
|
||||
pos = pos,
|
||||
|
@ -241,7 +241,7 @@ teleport.coordinates = function(str)
|
|||
end
|
||||
|
||||
-- particle effects
|
||||
function effect(pos)
|
||||
function tp_effect(pos)
|
||||
minetest.add_particlespawner({
|
||||
amount = 20,
|
||||
time = 0.25,
|
||||
|
@ -293,7 +293,7 @@ minetest.register_abm({
|
|||
player:moveto(target_coords, false)
|
||||
|
||||
-- paricle effects on arrival
|
||||
effect(target_coords)
|
||||
tp_effect(target_coords)
|
||||
|
||||
-- play sound on destination end
|
||||
minetest.sound_play("portal_close", {
|
||||
|
|
Loading…
Add table
Reference in a new issue