Simplify /at_reroute

It is not necessary to reload the save files, because there already is a function to invalidate train routes e.g. when turnouts are switched
master
orwell96 2018-01-23 13:14:40 +01:00
parent 418c026038
commit c93a5bf390
1 changed files with 2 additions and 3 deletions

View File

@ -406,9 +406,8 @@ minetest.register_chatcommand("at_reroute",
privs = {train_operator=true}, -- Only train operator is required, since this is relatively safe. privs = {train_operator=true}, -- Only train operator is required, since this is relatively safe.
func = function(name, param) func = function(name, param)
return advtrains.pcall(function() return advtrains.pcall(function()
atwarn("Train routes will be recalculated now") advtrains.invalidate_all_paths()
advtrains.save(false) return true, "Successfully invalidated train routes"
reload_saves()
end) end)
end, end,
}) })