Fix build error

This commit is contained in:
Drew DeVault 2015-07-04 17:28:17 -06:00
parent 8f2f3ff2b0
commit 18eb5e34d5

@ -127,7 +127,7 @@ namespace TrueCraft.Core.Logic.Blocks
}
}
var upSelf = world.BlockRepository.GetBlockProvider(world.GetBlockID(self + Coordinates3D.Up));
if (upSelf.Opaque && !(up is WallSignBlock))
if (upSelf.Opaque && !(upSelf is WallSignBlock))
return false; // Obstructed
if (adjacent != -Coordinates3D.One)