summaryrefslogtreecommitdiffstats
path: root/src/Items
diff options
context:
space:
mode:
authorKingCol13 <48412633+KingCol13@users.noreply.github.com>2021-07-09 19:45:53 +0200
committerGitHub <noreply@github.com>2021-07-09 19:45:53 +0200
commit68776c4d5919638b3cecccd083155cd58ccac573 (patch)
tree8b1d508953c3f3f260ad1b33c40e7ef9674ff0d0 /src/Items
parentProtoProxy: encrypt in-place (diff)
downloadcuberite-68776c4d5919638b3cecccd083155cd58ccac573.tar
cuberite-68776c4d5919638b3cecccd083155cd58ccac573.tar.gz
cuberite-68776c4d5919638b3cecccd083155cd58ccac573.tar.bz2
cuberite-68776c4d5919638b3cecccd083155cd58ccac573.tar.lz
cuberite-68776c4d5919638b3cecccd083155cd58ccac573.tar.xz
cuberite-68776c4d5919638b3cecccd083155cd58ccac573.tar.zst
cuberite-68776c4d5919638b3cecccd083155cd58ccac573.zip
Diffstat (limited to 'src/Items')
-rw-r--r--src/Items/ItemSign.h2
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;
}
} ;