Skip to content

Commit 466aa96

Browse files
authored
docs: change server release version to 3.1.2 and set debug log (#1954)
1 parent 5f11908 commit 466aa96

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/core.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ static constexpr auto AUTHENTICATOR_PERIOD = 30U;
1414

1515
// SERVER_MAJOR_VERSION is the actual full version of the server, including minor and patch numbers.
1616
// 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";
1818
static constexpr auto CLIENT_VERSION = 1321;
1919

2020
#define CLIENT_VERSION_UPPER (CLIENT_VERSION / 100)

src/lua/functions/lua_functions_loader.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class LuaFunctionsLoader {
6868
// If there is overflow, we return the value 0
6969
if constexpr (std::is_integral_v<T> && std::is_unsigned_v<T>) {
7070
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__);
7272
number = T(0);
7373
}
7474
}

0 commit comments

Comments
 (0)