diff --git a/GameEngine/Admin/welcome.tpl b/GameEngine/Admin/welcome.tpl
index f3d151ed..f7d578bc 100644
--- a/GameEngine/Admin/welcome.tpl
+++ b/GameEngine/Admin/welcome.tpl
@@ -1,7 +1,7 @@
Hello %USER%,
Thank you for registering on our server.
-Since the %START% at %TIME% Romans, Gauls and Teutons attack each other on this game world. Right now, %PLAYERS% players in %ALLI% Alliances are fighting for supremacy. To not get lost in this devastating battle, you should look for allies even though you are protected by beginner\'s protection for 1 day.
+Since the %START% at %TIME% Romans, Gauls and Teutons attack each other on this game world. Right now, %PLAYERS% players in %ALLI% Alliances are fighting for supremacy. To not get lost in this devastating battle, you should look for allies even though you are protected by beginner\'s protection for %PROTECTION% hours.
The taskmaster will help you on your way to establishing your empire with advice, deed and resources (after a few tasks such as finding out the exact duration of your beginner\'s protection). You can find him on the right side of your village. After successfully completing all of his tasks you will be on your own again.
diff --git a/GameEngine/Message.php b/GameEngine/Message.php
index fc6bcf1a..6afc5bd3 100644
--- a/GameEngine/Message.php
+++ b/GameEngine/Message.php
@@ -498,6 +498,7 @@ class Message {
$welcomemsg = preg_replace("'%PLAYERS%'", $database->countUser(), $welcomemsg);
$welcomemsg = preg_replace("'%ALLI%'", $database->countAlli(), $welcomemsg);
$welcomemsg = preg_replace("'%SERVER_NAME%'", SERVER_NAME, $welcomemsg);
+ $welcomemsg = preg_replace("'%PROTECTION%'", (PROTECTION/3600), $welcomemsg);
$welcomemsg = "[message]".$welcomemsg."[/message]";
return $database->sendMessage($uid, 1, WEL_TOPIC, addslashes($welcomemsg), 0, 0, 0, 0, 0);
}