[Mod] WorldEdit [1.0] [worldedit]

maddogg
Member
 
Posts: 27
Joined: Wed Dec 21, 2011 23:55

by maddogg » Wed Apr 04, 2012 21:04

lkjoel wrote:I'm using linux, and I did try //p set, and it still didn't work (I punched two different objects). Nothing seems to show up.


:( i am also gettin this
 

User avatar
sfan5
Member
 
Posts: 3636
Joined: Wed Aug 24, 2011 09:44
GitHub: sfan5
IRC: sfan5

by sfan5 » Thu Apr 05, 2012 05:19

Whats the Chat-Output when you enter //p set ?
Mods: Mesecons | WorldEdit | Nuke
Minetest builds for Windows (32-bit & 64-bit)
 

celeron55
Member
 
Posts: 430
Joined: Tue Apr 19, 2011 10:10

by celeron55 » Sun Apr 08, 2012 23:49

Here's a very quick worldedit patch I used on my server today:
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
diff -rupN worldedit/init.lua worldedit_modified/init.lua
--- worldedit/init.lua  2012-02-24 21:31:10.000000000 +0200
+++ worldedit_modified/init.lua 2012-04-09 02:39:29.000000000 +0300
@@ -3,6 +3,7 @@ print("[WorldEdit] Loading Table-Save/Lo
 dofile(minetest.get_modpath("worldedit").."/table_save-load.lua")
 assert(table.save ~= nil)
 assert(table.load ~= nil)
+minetest.register_privilege("worldedit", "can use worldedit")
 -- Functions
 function get_tmp(name)
     local f = io.open("wetemp_" .. name .. ".txt", "r")
@@ -50,6 +51,9 @@ function string:split(delimiter)
   return result
 end
 function check_player_we_perms(pname)
+    if minetest.get_player_privs(pname).worldedit then
+        return true
+    end
     local fi = ""
     local f = io.open("weperms.txt", "r")
     if f ~= nil then


That is how to add a privilege and check it in the latest API (0.4.dev-20120408). You'll probably want to remove the weperms file completely though; I didn't bother.

Also, you might want to use the new chatcommand API; here is a quick quote from doc/lua_api.txt. See builtin/chatcommands.lua for examples.
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
minetest.register_chatcommand(cmd, chatcommand definition)

Chatcommand definition (register_chatcommand)
{
    params = "<name> <privilege>", -- short parameter description
    description = "Remove privilege from player", -- full description
    privs = {privs=true}, -- require the "privs" privilege to run
    func = function(name, param), -- called when command is run
}                                         
 

lkjoel
Member
 
Posts: 778
Joined: Wed Feb 29, 2012 19:27

by lkjoel » Mon Apr 09, 2012 03:15

sfan5 wrote:Whats the Chat-Output when you enter //p set ?

I found the problem. It's because we are storing the mods in a global directory, where us users have no permission to change. I'm halfway done fixing that, and then I'll post a patch for you :)
My mods: The Nether | Doctor Who (WIP)

I have quit minetest ... again. I am heavily unimpressed by both the game and the community.
 

lkjoel
Member
 
Posts: 778
Joined: Wed Feb 29, 2012 19:27

by lkjoel » Mon Apr 09, 2012 03:31

Here is the dirty patch to fix the problem of not being able to set P1 and P2 (you will want to change it, but I hope it gives you an idea of what to do: USE TEMP FILES!):
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
6a6,8
> thetemppos1 = os.tmpname() .. "pos1"
> thetemppos2 = os.tmpname() .. "pos2"
> thetemppostoset = os.tmpname() .. "postoset"
9c11,19
<     local f = io.open(minetest.get_modpath("worldedit").."/wetemp_" .. name .. ".txt", "r")
---
>     filename = ""
>     if string.sub(name, 0, 4) == "pos1" then
>         filename = thetemppos1
>     elseif string.sub(name, 0, 4) == "pos2" then
>         filename = thetemppos2
>     else
>         filename = thetemppostoset
>     end
>     local f = io.open(filename, "r")
17c27,35
<     local f = io.open(minetest.get_modpath("worldedit").."/wetemp_" .. name .. ".txt", "w")
---
>     filename = ""
>     if string.sub(name, 0, 4) == "pos1" then
>         filename = thetemppos1
>     elseif string.sub(name, 0, 4) == "pos2" then
>         filename = thetemppos2
>     else
>         filename = thetemppostoset
>     end
>     local f = io.open(filename, "w")

Anyways, it works.
Last edited by lkjoel on Mon Apr 09, 2012 17:41, edited 1 time in total.
My mods: The Nether | Doctor Who (WIP)

I have quit minetest ... again. I am heavily unimpressed by both the game and the community.
 

User avatar
sfan5
Member
 
Posts: 3636
Joined: Wed Aug 24, 2011 09:44
GitHub: sfan5
IRC: sfan5

by sfan5 » Mon Apr 09, 2012 09:57

celeron55 wrote:Here's a very quick worldedit patch I used on my server today:
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
diff -rupN worldedit/init.lua worldedit_modified/init.lua
--- worldedit/init.lua  2012-02-24 21:31:10.000000000 +0200
+++ worldedit_modified/init.lua 2012-04-09 02:39:29.000000000 +0300
@@ -3,6 +3,7 @@ print("[WorldEdit] Loading Table-Save/Lo
 dofile(minetest.get_modpath("worldedit").."/table_save-load.lua")
 assert(table.save ~= nil)
 assert(table.load ~= nil)
+minetest.register_privilege("worldedit", "can use worldedit")
 -- Functions
 function get_tmp(name)
     local f = io.open("wetemp_" .. name .. ".txt", "r")
@@ -50,6 +51,9 @@ function string:split(delimiter)
   return result
 end
 function check_player_we_perms(pname)
+    if minetest.get_player_privs(pname).worldedit then
+        return true
+    end
     local fi = ""
     local f = io.open("weperms.txt", "r")
     if f ~= nil then


That is how to add a privilege and check it in the latest API (0.4.dev-20120408). You'll probably want to remove the weperms file completely though; I didn't bother.

Also, you might want to use the new chatcommand API; here is a quick quote from doc/lua_api.txt. See builtin/chatcommands.lua for examples.
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
minetest.register_chatcommand(cmd, chatcommand definition)

Chatcommand definition (register_chatcommand)
{
    params = "<name> <privilege>", -- short parameter description
    description = "Remove privilege from player", -- full description
    privs = {privs=true}, -- require the "privs" privilege to run
    func = function(name, param), -- called when command is run
}                                         

I'll merge your Patch
Mods: Mesecons | WorldEdit | Nuke
Minetest builds for Windows (32-bit & 64-bit)
 

User avatar
VanessaE
Member
 
Posts: 3894
Joined: Sun Apr 01, 2012 12:38
GitHub: VanessaE
IRC: VanessaE
In-game: VanessaEzekowitz

by VanessaE » Wed Apr 25, 2012 16:40

I'm having trouble using this mod (using WE v0.4 from the link on the OP)...

I wanted to copy part of one world (which I'm pretty sure was generated with 0.3) over to a new environment, so I loaded the world with the stuff I wanted to copy, navigated around and set //pos1 and //pos2 at opposite corners of the "box" I was interested in (a region about 40 x 65 x 200 nodes in size), did a //save filename which went okay, or so I gathered. I then exited back to the main menu, created and started playing in a new world, navigated to where I wanted to paste what was saved, and tried to issue load the saved file.

The game aborted without modifying the new world, leaving these messages on the controlling terminal:

12:25:09: ACTION[ServerThread]: singleplayer leaves game. List of players:
12:25:09: ERROR[main]: ServerError: LuaError: error: ...e/vanessa/.minetest/mods/minetest/worldedit/init.lua:383: attempt to get length of global 'data' (a nil value)
12:25:09: ERROR[main]: stack traceback:
Quit message received.

(I clicked "Proceed", which took me back to the main menu, and then I just closed the game.)

I tried this in both survival mode and creative mode. Using minetest 0.4 (20120416) from the PPA.
Last edited by VanessaE on Wed Apr 25, 2012 16:52, edited 1 time in total.
You might like some of my stuff:
Plantlife ~ More Trees ~ Home Decor ~ Pipeworks ~ HDX Textures (16-512px)
Tips (BTC): 13LdcdUFcNCFAm7HfvAXh5GHTjCnnQj6KE
 

User avatar
sfan5
Member
 
Posts: 3636
Joined: Wed Aug 24, 2011 09:44
GitHub: sfan5
IRC: sfan5

by sfan5 » Wed Apr 25, 2012 17:16

Paste your saved WorldEdit File
Mods: Mesecons | WorldEdit | Nuke
Minetest builds for Windows (32-bit & 64-bit)
 

User avatar
VanessaE
Member
 
Posts: 3894
Joined: Sun Apr 01, 2012 12:38
GitHub: VanessaE
IRC: VanessaE
In-game: VanessaEzekowitz

by VanessaE » Wed Apr 25, 2012 17:33

http://digitalaudioconcepts.com/vanessa/hobbies/minetest/home.we

How it got inflated to 74 MB with such a relatively small block being copied, you got me :-)
Last edited by VanessaE on Wed May 02, 2012 22:51, edited 1 time in total.
You might like some of my stuff:
Plantlife ~ More Trees ~ Home Decor ~ Pipeworks ~ HDX Textures (16-512px)
Tips (BTC): 13LdcdUFcNCFAm7HfvAXh5GHTjCnnQj6KE
 

User avatar
sfan5
Member
 
Posts: 3636
Joined: Wed Aug 24, 2011 09:44
GitHub: sfan5
IRC: sfan5

by sfan5 » Wed Apr 25, 2012 17:47

Try saving and pasting again
Mods: Mesecons | WorldEdit | Nuke
Minetest builds for Windows (32-bit & 64-bit)
 

User avatar
VanessaE
Member
 
Posts: 3894
Joined: Sun Apr 01, 2012 12:38
GitHub: VanessaE
IRC: VanessaE
In-game: VanessaEzekowitz

by VanessaE » Wed Apr 25, 2012 17:57

http://digitalaudioconcepts.com/vanessa/hobbies/minetest/home2.we

Slightly different positions this time (also a bit smaller of a box); still getting used to this sort of navigation.
Last edited by VanessaE on Wed May 02, 2012 22:51, edited 1 time in total.
You might like some of my stuff:
Plantlife ~ More Trees ~ Home Decor ~ Pipeworks ~ HDX Textures (16-512px)
Tips (BTC): 13LdcdUFcNCFAm7HfvAXh5GHTjCnnQj6KE
 

User avatar
sfan5
Member
 
Posts: 3636
Joined: Wed Aug 24, 2011 09:44
GitHub: sfan5
IRC: sfan5

by sfan5 » Fri May 18, 2012 13:27

Update!
Changelog:
  • Fixed Bug //load test.we results in loading test.we.we
  • Added API
  • Added Error-Message when File could not be loaded
Mods: Mesecons | WorldEdit | Nuke
Minetest builds for Windows (32-bit & 64-bit)
 

User avatar
sfan5
Member
 
Posts: 3636
Joined: Wed Aug 24, 2011 09:44
GitHub: sfan5
IRC: sfan5

by sfan5 » Fri May 18, 2012 13:43

Update again!
Changelog:
  • Fixed Error in Code which prevented Minetest from Starting
Mods: Mesecons | WorldEdit | Nuke
Minetest builds for Windows (32-bit & 64-bit)
 

User avatar
Jordach
Member
 
Posts: 4412
Joined: Mon Oct 03, 2011 17:58
GitHub: Jordach
IRC: Jordach
In-game: Jordach

by Jordach » Fri May 18, 2012 13:55

Twice in one day, must be hard work for you.

( ͡° ͜ʖ ͡°) ( ͡o ͜ʖ ͡o) [$ ( ͡° ͜ʖ ͡°) $] ( ͡$ ͜ʖ ͡$) ヽ༼ຈل͜ຈ༽ノ



My image and media server is back online and is functioning as normal.
 

User avatar
redcrab
Member
 
Posts: 831
Joined: Tue Dec 13, 2011 13:45

by redcrab » Fri May 18, 2012 17:14

Great evolution Sfan5 , love it ...

But there is an issue for my case (serial server on single host issue)
Context:
From a single host if I have multiple instance running (multiple world) on different port, I ve made a pattern to have for each world its respective game (mode def etc) but to avoid multiple copies of same mod I play a lot with a symbolic link ...
for instance I have a mod worldedit in game1 and game2 to provide worldedit respectively to world1 and world 2..
but currently both worldedit mod are symbolic link to a single worldedit folder located elsewhere...

Issue:
But when the mod want to create temp file it write them inside the mod folder ... so the two world shares the same temp files .... Outch ...

Solution:
I know that I may update it for world path instead of mod path , I would like you may fix it in your code by this way I do not have to fix again and again each time you release a version...

Thanks for your great mod :)
0.4 for serious builder click here
Dedicated Minetest redcrab server forum at http://minetestbb.suret.net

It's nice to be important but it is more important to be nice.
 

tiny
 

by tiny » Fri May 18, 2012 18:15

redcrab wrote:
Solution:
I know that I may update it for world path instead of mod path , I would like you may fix it in your code by this way I do not have to fix again and again each time you release a version...

Thanks for your great mod :)

(... And I changed it to modpath so it would run on 20120122-1.)
 

User avatar
sfan5
Member
 
Posts: 3636
Joined: Wed Aug 24, 2011 09:44
GitHub: sfan5
IRC: sfan5

by sfan5 » Fri May 18, 2012 20:29

3rd Update Today!
Changelog:
  • Added //light which sets the Light-Level of the Blocks to 13
  • Schematics will now get saved in MAPDIR/schems
  • Added »worldedit« Privs (Note: weperms.txt will still work)
Mods: Mesecons | WorldEdit | Nuke
Minetest builds for Windows (32-bit & 64-bit)
 

User avatar
Jordach
Member
 
Posts: 4412
Joined: Mon Oct 03, 2011 17:58
GitHub: Jordach
IRC: Jordach
In-game: Jordach

by Jordach » Fri May 18, 2012 20:33

Someone is working hard then.

( ͡° ͜ʖ ͡°) ( ͡o ͜ʖ ͡o) [$ ( ͡° ͜ʖ ͡°) $] ( ͡$ ͜ʖ ͡$) ヽ༼ຈل͜ຈ༽ノ



My image and media server is back online and is functioning as normal.
 

User avatar
sfan5
Member
 
Posts: 3636
Joined: Wed Aug 24, 2011 09:44
GitHub: sfan5
IRC: sfan5

by sfan5 » Fri May 18, 2012 20:36

^^
Mods: Mesecons | WorldEdit | Nuke
Minetest builds for Windows (32-bit & 64-bit)
 

Temperest
Member
 
Posts: 651
Joined: Tue Nov 15, 2011 23:13
GitHub: Uberi

by Temperest » Fri May 18, 2012 20:54

Love the //light command, I've been looking for a way to get rid of the weird persistent shadows.
WorldEdit 1.0 released

The Mesecons Laboratory - the art of Mesecons circuitry
Latest article: Mesecons Basics.
 

User avatar
sfan5
Member
 
Posts: 3636
Joined: Wed Aug 24, 2011 09:44
GitHub: sfan5
IRC: sfan5

by sfan5 » Sat May 19, 2012 06:15

Should i make a //dark Command to?
Mods: Mesecons | WorldEdit | Nuke
Minetest builds for Windows (32-bit & 64-bit)
 

Temperest
Member
 
Posts: 651
Joined: Tue Nov 15, 2011 23:13
GitHub: Uberi

by Temperest » Sat May 19, 2012 14:27

What about having the //light command accept a light level to set instead? Like this:

//light 2


And omitting the level would mean 13:

//light
WorldEdit 1.0 released

The Mesecons Laboratory - the art of Mesecons circuitry
Latest article: Mesecons Basics.
 

cosarara97
Member
 
Posts: 180
Joined: Tue Nov 01, 2011 18:53

by cosarara97 » Sat May 19, 2012 14:31

Does the //light command override night? (Will there be light forever?)

EDIT: I can't get the light command to work D: I get a "n blocks lighted" message, but nothing happens...
Last edited by cosarara97 on Sat May 19, 2012 14:44, edited 1 time in total.
:D
 

Temperest
Member
 
Posts: 651
Joined: Tue Nov 15, 2011 23:13
GitHub: Uberi

by Temperest » Sat May 19, 2012 14:44

For me, it was lit until the lighting was recalculated.
WorldEdit 1.0 released

The Mesecons Laboratory - the art of Mesecons circuitry
Latest article: Mesecons Basics.
 

User avatar
sfan5
Member
 
Posts: 3636
Joined: Wed Aug 24, 2011 09:44
GitHub: sfan5
IRC: sfan5

by sfan5 » Sat May 19, 2012 16:32

cosarara97 wrote:Does the //light command override night? (Will there be light forever?)

EDIT: I can't get the light command to work D: I get a "n blocks lighted" message, but nothing happens...

You must select a Region
Mods: Mesecons | WorldEdit | Nuke
Minetest builds for Windows (32-bit & 64-bit)
 

Jenkings
Member
 
Posts: 12
Joined: Thu May 17, 2012 09:02

by Jenkings » Sat May 19, 2012 18:21

This is very good mod.
So can you add something like a //sphere in MC ,that creates big ball , and parameters are material and radius ?
Sorry for my bad English.
 

cosarara97
Member
 
Posts: 180
Joined: Tue Nov 01, 2011 18:53

by cosarara97 » Sat May 19, 2012 18:33

sfan5 wrote:
cosarara97 wrote:Does the //light command override night? (Will there be light forever?)

EDIT: I can't get the light command to work D: I get a "n blocks lighted" message, but nothing happens...

You must select a Region

I do. I wrote "n", but the message says something like "1836 blocks lighted", depending on how big is the area...
:D
 

User avatar
LolManKuba
Member
 
Posts: 939
Joined: Fri Feb 10, 2012 22:36

by LolManKuba » Sun May 20, 2012 00:24

Lol!
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,32,-73) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,32,-72) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,32,-71) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,32,-70) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,32,-69) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,32,-68) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,32,-67) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,32,-66) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,32,-65) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,32,-64) (block (0,2,-4))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,32,-63) (block (0,2,-4))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,32,-62) (block (0,2,-4))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,32,-61) (block (0,2,-4))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "default:wood" at (6,33,-74) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,33,-73) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,33,-72) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,33,-71) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,33,-70) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,33,-69) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,33,-68) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,33,-67) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,33,-66) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,33,-65) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,33,-64) (block (0,2,-4))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,33,-63) (block (0,2,-4))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,33,-62) (block (0,2,-4))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,33,-61) (block (0,2,-4))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "default:wood" at (6,34,-74) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,34,-73) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,34,-72) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,34,-71) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,34,-70) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,34,-69) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,34,-68) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,34,-67) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,34,-66) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,34,-65) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,34,-64) (block (0,2,-4))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,34,-63) (block (0,2,-4))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,34,-62) (block (0,2,-4))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,34,-61) (block (0,2,-4))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "default:wood" at (6,35,-74) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,35,-73) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,35,-72) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,35,-71) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,35,-70) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,35,-69) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,35,-68) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,35,-67) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,35,-66) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,35,-65) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,35,-64) (block (0,2,-4))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,35,-63) (block (0,2,-4))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,35,-62) (block (0,2,-4))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,35,-61) (block (0,2,-4))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "default:wood" at (6,36,-74) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,36,-73) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,36,-72) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,36,-71) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,36,-70) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,36,-69) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,36,-68) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,36,-67) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,36,-66) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,36,-65) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,36,-64) (block (0,2,-4))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,36,-63) (block (0,2,-4))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,36,-62) (block (0,2,-4))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,36,-61) (block (0,2,-4))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "default:wood" at (6,37,-74) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,37,-73) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,37,-72) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,37,-71) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,37,-70) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,37,-69) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,37,-68) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,37,-67) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,37,-66) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,37,-65) (block (0,2,-5))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,37,-64) (block (0,2,-4))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,37,-63) (block (0,2,-4))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,37,-62) (block (0,2,-4))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (6,37,-61) (block (0,2,-4))
20:22:01: INFO[ServerThread]: Debug stacks:
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 4416:
20:22:01: INFO[ServerThread]: #0  main
20:22:01: INFO[ServerThread]: DEBUG STACK FOR THREAD 5380:
20:22:01: INFO[ServerThread]: #0  ServerThread::Thread
20:22:01: INFO[ServerThread]: #1  Server::Receive
20:22:01: INFO[ServerThread]: #2  Server::ProcessData
20:22:01: INFO[main]: Server: Saving players
20:22:05: INFO[main]: Server: Saving environment metadata
20:22:09: INFO[main]: Server: Stopping and waiting threads
20:22:09: INFO[ServerThread]: ServerMap: Unloaded 9 blocks from memory, of which 0 were written, 186 blocks in memory.
20:22:09: INFO[ServerThread]: Players:
20:22:09: INFO[ServerThread]: * singleplayer    RemoteClient 2: m_blocks_sent.size()=504, m_blocks_sending.size()=3, m_nearest_unsent_d=1, m_excess_gotblocks=0
20:22:09: INFO[ServerThread]: Server: MapEditEvents:
20:22:09: INFO[ServerThread]:   MEET_ADDNODE: - - - - - - - - - - - - - - 2100
20:22:20: INFO[ServerThread]: ServerMap: Written: 0 sector metadata files, 8 block files, 186 blocks in memory.
20:22:20: INFO[ServerThread]: ServerMap: Blocks modified by:
20:22:20: INFO[ServerThread]:   setNodeNoCheck, setNode, setNode, setNode...: 4
20:22:20: INFO[ServerThread]:   setNodeNoCheck, setNode, setNode, setNodeNoCheck...: 4
20:22:20: INFO[ServerThread]: Server::ProcessData(): Cancelling: peer 2 not found
20:22:20: INFO[main]: Server: Threads stopped
20:22:20: VERBOSE[main]: ServerEnvironment::deactivateFarObjects(): deactivating object id=1 on inactive block (-1,1,-4)
20:22:20: VERBOSE[main]: ServerEnvironment::deactivateFarObjects(): object id=1 is not known by clients; deleting
20:22:20: VERBOSE[main]: ServerMap::~ServerMap
20:22:29: INFO[main]: ServerMap: Written: 0 sector metadata files, 167 block files, 186 blocks in memory.
20:22:29: INFO[main]: ServerMap: Blocks modified by:
20:22:29: INFO[main]:   Timestamp older than 60s (step): - - - -  18
20:22:29: INFO[main]:   Timestamp older than 60s (step), Timestamp older than 60s (step): 10
20:22:29: INFO[main]:   Timestamp older than 60s (step), Timestamp older than 60s (step)...: 68
20:22:29: INFO[main]:   Timestamp older than 60s (step), setTimestamp: 5
20:22:29: INFO[main]:   Timestamp older than 60s (step), setTimestamp...: 33
20:22:29: INFO[main]:   setTimestamp: - - - - - - - - - - - - - - 25
20:22:29: INFO[main]:   setTimestamp, Timestamp older than 60s (step): 7
20:22:29: INFO[main]:   setTimestamp, setTimestamp: - - - - - - - 1
20:22:29: INFO[main]: ServerMap: Saved map to C:\Documents and Settings\HP_Administrator.YOUR-136F2019DC\My Documents\minetest-0.4.dev-20120408-win32\bin\..\worlds\Recording Minetest Texture Pack
20:22:29: INFO[main]: Server: Deinitializing scripting
20:22:32: INFO[main]: BanManager: saving to C:\Documents and Settings\HP_Administrator.YOUR-136F2019DC\My Documents\minetest-0.4.dev-20120408-win32\bin\..\worlds\Recording Minetest Texture Pack\ipban.txt
20:22:33: INFO[main]: Searching worlds...
20:22:33: INFO[main]:   In C:\Documents and Settings\HP_Administrator.YOUR-136F2019DC\My Documents\minetest-0.4.dev-20120408-win32\bin\..\worlds:
20:22:33: INFO[main]: Parsing configuration file: "C:\Documents and Settings\HP_Administrator.YOUR-136F2019DC\My Documents\minetest-0.4.dev-20120408-win32\bin\..\worlds\Recording Minetest Texture Pack\world.mt"
20:22:33: INFO[main]: Recording Minetest Texture Pack
20:22:33: INFO[main]: 1 found.
20:22:33: INFO[main]: Waiting for other menus
20:22:33: INFO[main]: Waited for other menus
20:22:33: INFO[main]: Created main menu
20:22:33: INFO[main]: locale has been set to:English_United States.1252
20:22:33: INFO[main]: locale has been set to:C

flipping out!
Last edited by LolManKuba on Sun May 20, 2012 00:26, edited 1 time in total.
 

Temperest
Member
 
Posts: 651
Joined: Tue Nov 15, 2011 23:13
GitHub: Uberi

by Temperest » Sun May 20, 2012 01:08

Seems like you either are setting an invalid node or are doing an operation out of chunk load distance.
WorldEdit 1.0 released

The Mesecons Laboratory - the art of Mesecons circuitry
Latest article: Mesecons Basics.
 

cosarara97
Member
 
Posts: 180
Joined: Tue Nov 01, 2011 18:53

by cosarara97 » Thu Jun 28, 2012 14:58

The light command still doesn't work for me (although the console says it does), is there any way to recalculate light in the whole world? Those shadows are really ugly...
:D
 

PreviousNext

Return to Mod Releases

Who is online

Users browsing this forum: No registered users and 13 guests

cron