Fix /help os map resize

This commit is contained in:
UnknownShadow200 2017-02-21 08:00:59 +11:00
parent 2bb1386ef1
commit bb52576a13
2 changed files with 2 additions and 2 deletions

View File

@ -178,7 +178,7 @@ namespace MCGalaxy.Commands {
"%T/os map physics [level] %H- Sets the physics on your map.",
"%T/os map delete [num] %H- Deletes your nth map",
"%T/os map restore [num] %H- Restores backup [num] of your map",
"%T/os map resize [width] [length] [height] %H- Resizes your map",
"%T/os map resize [width] [height] [length] %H- Resizes your map",
"%T/os map save %H- Saves your map",
"%T/os map pervisit [rank] %H- Sets the pervisit of you map",
"%T/os map perbuild [rank] %H- Sets the perbuild of you map",

View File

@ -74,7 +74,7 @@ namespace MCGalaxy.Commands.World {
temp.blocks[x + width * (z + y * length)] = block;
if (block != Block.custom_block) continue;
byte extBlock = lvl.GetExtTile(x, y, z);
byte extBlock = lvl.GetExtTileNoCheck(x, y, z);
temp.SetExtTileNoCheck(x, y, z, extBlock);
}
temp.spawnx = lvl.spawnx; temp.spawny = lvl.spawny; temp.spawnz = lvl.spawnz;