From 4358b495b29a80b0edc4af4a84de3d12db9e10e3 Mon Sep 17 00:00:00 2001 From: Jonathan G Rennison Date: Sat, 30 Dec 2023 22:47:21 +0000 Subject: [PATCH] Increase maximum length of sign text --- src/signs_type.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/signs_type.h b/src/signs_type.h index fd73af8fad..eb29d126c3 100644 --- a/src/signs_type.h +++ b/src/signs_type.h @@ -16,6 +16,6 @@ struct Sign; static const SignID INVALID_SIGN = 0xFFFF; ///< Sentinel for an invalid sign. -static const uint MAX_LENGTH_SIGN_NAME_CHARS = 32; ///< The maximum length of a sign name in characters including '\0' +static const uint MAX_LENGTH_SIGN_NAME_CHARS = 128; ///< The maximum length of a sign name in characters including '\0' #endif /* SIGNS_TYPE_H */