File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ static constexpr auto AUTHENTICATOR_PERIOD = 30U;
14
14
15
15
// SERVER_MAJOR_VERSION is the actual full version of the server, including minor and patch numbers.
16
16
// This is intended for internal use to identify the exact state of the server (release) software.
17
- static constexpr auto SERVER_RELEASE_VERSION = " 3.1.1 " ;
17
+ static constexpr auto SERVER_RELEASE_VERSION = " 3.1.2 " ;
18
18
static constexpr auto CLIENT_VERSION = 1321 ;
19
19
20
20
#define CLIENT_VERSION_UPPER (CLIENT_VERSION / 100 )
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ class LuaFunctionsLoader {
68
68
// If there is overflow, we return the value 0
69
69
if constexpr (std::is_integral_v<T> && std::is_unsigned_v<T>) {
70
70
if (number < 0 ) {
71
- g_logger ().warn (" [{}] overflow, setting to default signed value (0)" , __FUNCTION__);
71
+ g_logger ().debug (" [{}] overflow, setting to default signed value (0)" , __FUNCTION__);
72
72
number = T (0 );
73
73
}
74
74
}
You can’t perform that action at this time.
0 commit comments