Index: scripts/usr/local/lib/7dtd/VERSION
===================================================================
--- scripts/usr/local/lib/7dtd/VERSION	(revision 228)
+++ scripts/usr/local/lib/7dtd/VERSION	(revision 229)
@@ -1,4 +1,4 @@
-Version: 78
-Release: 2015-04-09
+Version: 79
+Release: 2015-04-11
 DediBuild: 583520
 
Index: scripts/usr/local/lib/7dtd/commands/updateengine.sh
===================================================================
--- scripts/usr/local/lib/7dtd/commands/updateengine.sh	(revision 228)
+++ scripts/usr/local/lib/7dtd/commands/updateengine.sh	(revision 229)
@@ -41,19 +41,19 @@
 
 	local LOCAL=$(getLocalEngineVersion)
-	local REMOTE=$(getRemoteEngineVersion)
+	#local REMOTE=$(getRemoteEngineVersion)
 	local LOCAL_SUPPORTED_BUILD=$(cat /usr/local/lib/7dtd/VERSION | grep "DediBuild" | cut -d\  -f2)
 
-	if [ "$FORCED" = "yes" -o $REMOTE -gt $LOCAL ]; then
-		echo "A newer version of the engine is available."
+#	if [ "$FORCED" = "yes" -o $REMOTE -gt $LOCAL ]; then
+#		echo "A newer version of the engine is available."
 		echo "Local buildid:     $LOCAL"
-		echo "Available buildid: $REMOTE"
+		#echo "Available buildid: $REMOTE"
 		echo
 
-		if [ "$LOCAL_SUPPORTED_BUILD" != "$REMOTE" ]; then
-			echo "WARNING!!! The currently installed version of the scripts do not support the newer dedicated server build!"
+#		if [ "$LOCAL_SUPPORTED_BUILD" != "$REMOTE" ]; then
+			echo "WARNING!!! The currently installed version of the scripts might not support the newer dedicated server build!"
 			echo "If you continue you might not be able to start the server."
-			echo "Please wait for an updated release of the scripts or continue at your own risk."
+#			echo "Please wait for an updated release of the scripts or continue at your own risk."
 			echo
-		fi
+#		fi
 	
 		while : ; do
@@ -73,4 +73,12 @@
 			esac
 		done
+		
+		if [ $STEAM_USER = "" ]; then
+			read -p "Steam username: " STEAM_USER
+		fi
+
+		if [ $STEAM_PASS = "" ]; then
+			read -s -p "Steam password: " STEAM_PASS
+		fi
 
 		cd $SDTD_BASE/steamcmd
@@ -87,20 +95,20 @@
 			echo
 		fi
-	else
-		echo "Engine is already at the newest build (local: $LOCAL, remote: $REMOTE)."
-	fi
+#	else
+#		echo "Engine is already at the newest build (local: $LOCAL, remote: $REMOTE)."
+#	fi
 }
 
 sdtdCommandUpdateengineHelp() {
-	echo "Usage: $(basename $0) updateengine [--force | --check]"
+	echo "Usage: $(basename $0) updateengine" # [--force | --check]"
 	echo
 	echo "Check for a newer version of engine (aka game) files of 7dtd. If there is a newer"
-	echo "version they can be updated by this command."
-	echo
-	echo "If --force is specified you are asked if you want to redownload the engine"
-	echo "even if there is no new version available."
-	echo
-	echo "If --check is specified it will only output the current local and remote build ids"
-	echo "and if an update is available."
+	echo "version they will be updated by this command."
+#	echo
+#	echo "If --force is specified you are asked if you want to redownload the engine"
+#	echo "even if there is no new version available."
+#	echo
+#	echo "If --check is specified it will only output the current local and remote build ids"
+#	echo "and if an update is available."
 }
 
@@ -110,9 +118,9 @@
 
 sdtdCommandUpdateengineExpects() {
-	case $1 in
-		2)
-			echo "--force --check"
-			;;
-	esac
+#	case $1 in
+#		2)
+#			echo "--force --check"
+#			;;
+#	esac
 }
 
