From 812e3a9a04ec1a6a5ac36ae6ff8073e5ce70045d Mon Sep 17 00:00:00 2001 From: Lemongrass3110 Date: Fri, 1 Dec 2017 17:24:16 +0100 Subject: [PATCH] Disabled root/admin user check for build bots (#2659) Thanks to @hurtsky --- src/common/core.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/common/core.cpp b/src/common/core.cpp index a333e8b15b..1a5ceb054f 100644 --- a/src/common/core.cpp +++ b/src/common/core.cpp @@ -303,11 +303,13 @@ static void display_title(void) { // Warning if executed as superuser (root) void usercheck(void) { +#if !defined(BUILDBOT) #ifndef _WIN32 if (geteuid() == 0) { ShowWarning ("You are running rAthena with root privileges, it is not necessary.\n"); } #endif +#endif } /*======================================