forked from mirrors/NBTExplorer
Fixed bug in chunk creation aliasing Z coordinate to X
This commit is contained in:
parent
b7c53caa5e
commit
e9fe001656
3 changed files with 4 additions and 4 deletions
|
@ -30,8 +30,8 @@ using System.Runtime.InteropServices;
|
||||||
// Build Number
|
// Build Number
|
||||||
// Revision
|
// Revision
|
||||||
//
|
//
|
||||||
[assembly: AssemblyVersion("1.3.0.0")]
|
[assembly: AssemblyVersion("1.3.1.0")]
|
||||||
[assembly: AssemblyFileVersion("1.3.0.0")]
|
[assembly: AssemblyFileVersion("1.3.1.0")]
|
||||||
|
|
||||||
// This library is compatible with all CLS-compliant .NET programming languages.
|
// This library is compatible with all CLS-compliant .NET programming languages.
|
||||||
[assembly: CLSCompliant(true)]
|
[assembly: CLSCompliant(true)]
|
|
@ -71,7 +71,7 @@ namespace Substrate
|
||||||
|
|
||||||
protected override IChunk CreateChunkCore (int cx, int cz)
|
protected override IChunk CreateChunkCore (int cx, int cz)
|
||||||
{
|
{
|
||||||
return AnvilChunk.Create(cz, cz);
|
return AnvilChunk.Create(cx, cz);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override IChunk CreateChunkVerifiedCore (NbtTree tree)
|
protected override IChunk CreateChunkVerifiedCore (NbtTree tree)
|
||||||
|
|
|
@ -71,7 +71,7 @@ namespace Substrate
|
||||||
|
|
||||||
protected override IChunk CreateChunkCore (int cx, int cz)
|
protected override IChunk CreateChunkCore (int cx, int cz)
|
||||||
{
|
{
|
||||||
return AlphaChunk.Create(cz, cz);
|
return AlphaChunk.Create(cx, cz);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override IChunk CreateChunkVerifiedCore (NbtTree tree)
|
protected override IChunk CreateChunkVerifiedCore (NbtTree tree)
|
||||||
|
|
Loading…
Reference in a new issue