forked from VoxeLibre/VoxeLibre
Rename /spawnstruct parameters
This commit is contained in:
parent
8c4c2e20d3
commit
8e77c897e6
|
@ -223,15 +223,15 @@ end
|
||||||
|
|
||||||
-- The call of Struct
|
-- The call of Struct
|
||||||
random_struct.call_struct= function(pos, struct_style)
|
random_struct.call_struct= function(pos, struct_style)
|
||||||
-- 1 : City , 2 : Temple Sand
|
-- 1: Village , 2: Desert temple
|
||||||
if struct_style == 1 then
|
if struct_style == 1 then
|
||||||
random_struct.generatecity(pos)
|
random_struct.geerate_village(pos)
|
||||||
elseif struct_style == 2 then
|
elseif struct_style == 2 then
|
||||||
random_struct.generate_sand_temple(pos)
|
random_struct.generate_desert_temple(pos)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
random_struct.generatecity = function(pos)
|
random_struct.generate_village = function(pos)
|
||||||
-- No Generating for the moment only place it :D
|
-- No Generating for the moment only place it :D
|
||||||
local city = random_struct.get_struct("pnj_town_1.we")
|
local city = random_struct.get_struct("pnj_town_1.we")
|
||||||
local newpos = {x=pos.x,y=pos.y,z=pos.z}
|
local newpos = {x=pos.x,y=pos.y,z=pos.z}
|
||||||
|
@ -241,7 +241,7 @@ random_struct.generatecity = function(pos)
|
||||||
random_struct.deserialise_WE(newpos, city )
|
random_struct.deserialise_WE(newpos, city )
|
||||||
end
|
end
|
||||||
|
|
||||||
random_struct.generate_sand_temple = function(pos)
|
random_struct.generate_desert_temple = function(pos)
|
||||||
-- No Generating for the temple ... Why using it ? No Change
|
-- No Generating for the temple ... Why using it ? No Change
|
||||||
local temple = random_struct.get_struct("desert_temple.we")
|
local temple = random_struct.get_struct("desert_temple.we")
|
||||||
local newpos = {x=pos.x,y=pos.y-12,z=pos.z}
|
local newpos = {x=pos.x,y=pos.y-12,z=pos.z}
|
||||||
|
@ -254,7 +254,7 @@ end
|
||||||
|
|
||||||
-- Debug command
|
-- Debug command
|
||||||
minetest.register_chatcommand("spawnstruct", {
|
minetest.register_chatcommand("spawnstruct", {
|
||||||
params = "town | sand_temple",
|
params = "desert_temple | village",
|
||||||
description = "Generate a pre-defined structure near your position.",
|
description = "Generate a pre-defined structure near your position.",
|
||||||
privs = {debug = true},
|
privs = {debug = true},
|
||||||
func = function(name, param)
|
func = function(name, param)
|
||||||
|
@ -264,15 +264,15 @@ minetest.register_chatcommand("spawnstruct", {
|
||||||
end
|
end
|
||||||
if param == "" or param == "help" then
|
if param == "" or param == "help" then
|
||||||
minetest.chat_send_player(name, "Please use “/spawnstruct <type>”.")
|
minetest.chat_send_player(name, "Please use “/spawnstruct <type>”.")
|
||||||
minetest.chat_send_player(name, "Avaiable types: town, sand_temple")
|
minetest.chat_send_player(name, "Avaiable types: desert_temple, village")
|
||||||
end
|
end
|
||||||
if param == "town" then
|
if param == "village" then
|
||||||
random_struct.generatecity(pos)
|
random_struct.generate_village(pos)
|
||||||
minetest.chat_send_player(name, "Town created.")
|
minetest.chat_send_player(name, "Village created.")
|
||||||
end
|
end
|
||||||
if param == "sand_temple" then
|
if param == "desert_temple" then
|
||||||
random_struct.generate_sand_temple(pos)
|
random_struct.generate_desert_temple(pos)
|
||||||
minetest.chat_send_player(name, "Sand temple created")
|
minetest.chat_send_player(name, "Desert temple created.")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue