diff options
Diffstat (limited to 'src/Items/ItemSign.h')
-rw-r--r-- | src/Items/ItemSign.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Items/ItemSign.h b/src/Items/ItemSign.h index fc5174e0b..02913b58f 100644 --- a/src/Items/ItemSign.h +++ b/src/Items/ItemSign.h @@ -77,7 +77,7 @@ private: a_Rotation = (a_Rotation / 360) * 16; - return static_cast<char>(a_Rotation) % 16; + return static_cast<NIBBLETYPE>(a_Rotation) % 16; } } ; |