0

Fixed bug in signpost handling code

Two of the coordinates were flipped in markers.js
Also, overviewer.dat is now removed with -d
This commit is contained in:
Andrew Chin
2010-11-06 15:27:52 -04:00
parent 0b6461083b
commit c96b3363b2
2 changed files with 8 additions and 2 deletions

View File

@@ -626,8 +626,8 @@ class ChunkRenderer(object):
# coordinates to global world coordinates
newPOI = dict(type="sign",
x= entity['x'],
y= entity['z'],
z= entity['y'],
y= entity['y'],
z= entity['z'],
msg="%s\n%s\n%s\n%s" %
(entity['Text1'], entity['Text2'], entity['Text3'], entity['Text4']),
chunk= (self.chunkX, self.chunkY),