8 lines
149 B
Lua
8 lines
149 B
Lua
|
|
|
|
minetest.register_chatcommand("mission_abort", {
|
|
description = "Aborts the current mission",
|
|
func = function(name)
|
|
missions.abort(name)
|
|
end
|
|
}) |