Server-configurable nametag distance

This commit is contained in:
Vortrex
2022-04-30 13:18:26 -05:00
parent 7ee19c0931
commit 29856cf03e
6 changed files with 50 additions and 14 deletions

View File

@@ -231,4 +231,10 @@ function createColour(alpha, red, green, blue) {
return alpha << 24 | red << 16 | green << 8 | blue;
}
// ===========================================================================
function setNameTagDistance(distance) {
nametagDistance = distance;
}
// ===========================================================================