Fix /spin and rotating resulting in air no longer being pasted. (Thanks goodlyay)

This commit is contained in:
UnknownShadow200 2016-05-28 16:09:00 +10:00
parent 08186c876c
commit bd874937e4

View File

@ -90,6 +90,7 @@ namespace MCGalaxy.Drawing {
CopyState newState = new CopyState(state.X, state.Y, state.Z,
state.Width, state.Height, state.Length);
newState.UsedBlocks = state.UsedBlocks;
newState.PasteAir = state.PasteAir;
return newState;
}