diff --git a/include/mcpp/block.h b/include/mcpp/block.h index e04cd8e3..8ed27738 100644 --- a/include/mcpp/block.h +++ b/include/mcpp/block.h @@ -8,8 +8,7 @@ class BlockType { int id; int mod; - BlockType() = default; - constexpr BlockType(int id, int modifier = 0) : id(id), mod(modifier){}; + constexpr BlockType(int id = 0, int modifier = 0) : id(id), mod(modifier){}; /** * Watch out as this also compares the BlockType.mod element of the block,