diff options
author | orwell96 <orwell@bleipb.de> | 2018-04-25 16:38:12 +0200 |
---|---|---|
committer | orwell96 <orwell@bleipb.de> | 2018-06-14 17:39:42 +0200 |
commit | 139a26fccce1e622d58f1673284e2addfb0d1ed2 (patch) | |
tree | a7df19f93e09a9b7699d93a4dbe07714164fe083 /advtrains/nodedb.lua | |
parent | 30e98520e7e6fa17beaf3f1c328fd58e2b19cebc (diff) | |
download | advtrains-139a26fccce1e622d58f1673284e2addfb0d1ed2.tar.gz advtrains-139a26fccce1e622d58f1673284e2addfb0d1ed2.tar.bz2 advtrains-139a26fccce1e622d58f1673284e2addfb0d1ed2.zip |
Bugfixes part 1
There's something wrong with the new paths, next time build a path validity checker to trace the issue
Diffstat (limited to 'advtrains/nodedb.lua')
-rw-r--r-- | advtrains/nodedb.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/advtrains/nodedb.lua b/advtrains/nodedb.lua index 592e730..6695eba 100644 --- a/advtrains/nodedb.lua +++ b/advtrains/nodedb.lua @@ -210,7 +210,7 @@ ndb.run_lbm = function(pos, node) end else --if not in database, take it. - atlog("Node Database:", pos, "was not found in the database, have you used worldedit?") + --atlog("Node Database:", pos, "was not found in the database, have you used worldedit?") ndb.update(pos, node) end return false @@ -256,7 +256,7 @@ ndb.restore_all = function() end end end - local text="Restore node database: Replaced"..cnt.."nodes, removed"..dcnt.."ghost nodes." + local text="Restore node database: Replaced "..cnt.." nodes, removed "..dcnt.." ghost nodes." atlog(text) return text end |