From d6e7ef0af2a2f4ad74ccda6a532dd5a272a0d5f8 Mon Sep 17 00:00:00 2001 From: Artemis Rosman <73006620+rozukke@users.noreply.github.com> Date: Thu, 29 Aug 2024 18:07:09 +1000 Subject: [PATCH] RELEASE --- src/block.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/block.cpp b/src/block.cpp index 7e0eb5e7..04f72eb5 100644 --- a/src/block.cpp +++ b/src/block.cpp @@ -6,7 +6,7 @@ bool BlockType::operator==(const BlockType& other) const { } bool BlockType::operator!=(const BlockType& other) const { - return !(*this == other); + return !(*this == other); } BlockType BlockType::withMod(int modifier) const {