diff options
Diffstat (limited to 'Minecraft.World/TheEndBiome.cpp')
| -rw-r--r-- | Minecraft.World/TheEndBiome.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Minecraft.World/TheEndBiome.cpp b/Minecraft.World/TheEndBiome.cpp index 9e2359ed..d54efb36 100644 --- a/Minecraft.World/TheEndBiome.cpp +++ b/Minecraft.World/TheEndBiome.cpp @@ -14,8 +14,8 @@ TheEndBiome::TheEndBiome(int id) : Biome(id) ambientFriendlies.clear(); enemies.push_back(new MobSpawnerData(eTYPE_ENDERMAN, 10, 4, 4)); - topMaterial = (byte) Tile::dirt_Id; - material = (byte) Tile::dirt_Id; + topMaterial = static_cast<byte>(Tile::dirt_Id); + material = static_cast<byte>(Tile::dirt_Id); decorator = new TheEndBiomeDecorator(this); } |
