Index: /bootstrapper/bootstrap.sh
===================================================================
--- /bootstrapper/bootstrap.sh	(revision 256)
+++ /bootstrapper/bootstrap.sh	(revision 257)
@@ -183,31 +183,4 @@
 }
 
-setSteamLoginData() {
-	echo -e "Steam account data\n"
-	echo -e "Steam account login data is required for SteamCMD to get the 7dtd-server files.\n"
-	echo -e "Store account login data in /etc/7dtd.conf which will be only readable by root?"
-	echo -e "If you select to NOT store the data you will have to enter it each time you want"
-	echo -e "to update the server files.\n"
-	while : ; do
-		local STOREDATA
-		read -p "Store data in /etc/7dtd.conf? (yn) " STOREDATA
-		case $STOREDATA in
-			y)
-				read -p "Steam username: " username
-				read -s -p "Steam password: " password
-				sed -i "s/export STEAM_USER=/export STEAM_USER=$username/" /etc/7dtd.conf
-				sed -i "s/export STEAM_PASS=/export STEAM_PASS=$password/" /etc/7dtd.conf
-				echo -e "\n=============================================================\n\n"
-				break
-				;;
-			n)
-				break
-				;;
-			*)
-				echo "Wrong input"
-		esac
-	done
-}
-
 installSteamCmdAndSDTD() {
 	echo -e "Installing SteamCMD and 7DtD\n"
@@ -269,5 +242,4 @@
 	setupUser
 	installManagementScripts
-	setSteamLoginData
 	installSteamCmdAndSDTD
 	if [ $ADDCRONJOBS -eq 1 ]; then
Index: /scripts/etc/7dtd.conf
===================================================================
--- /scripts/etc/7dtd.conf	(revision 256)
+++ /scripts/etc/7dtd.conf	(revision 257)
@@ -1,7 +1,3 @@
 #!/bin/sh
-
-# User login info for Steam to download/update the engine
-export STEAM_USER=
-export STEAM_PASS=
 
 # Root of the 7dtd folders, containing e.g. the "engine", "instances" folders
Index: /scripts/usr/local/lib/7dtd/VERSION
===================================================================
--- /scripts/usr/local/lib/7dtd/VERSION	(revision 256)
+++ /scripts/usr/local/lib/7dtd/VERSION	(revision 257)
@@ -1,3 +1,3 @@
-Version: 94
-Release: 2015-07-26
+Version: 95
+Release: 2016-02-16
 
Index: /scripts/usr/local/lib/7dtd/commands/updateengine.sh
===================================================================
--- /scripts/usr/local/lib/7dtd/commands/updateengine.sh	(revision 256)
+++ /scripts/usr/local/lib/7dtd/commands/updateengine.sh	(revision 257)
@@ -73,17 +73,9 @@
 		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
-		./steamcmd.sh +login $STEAM_USER $STEAM_PASS +force_install_dir $SDTD_BASE/engine +app_update 294420 validate +quit
+		./steamcmd.sh +login anonymous +force_install_dir $SDTD_BASE/engine +app_update 294420 validate +quit
 
 		if [ -d /usr/local/lib/7dtd/server-fixes ]; then
-		cp /usr/local/lib/7dtd/server-fixes/* $SDTD_BASE/engine/ -R
+			cp /usr/local/lib/7dtd/server-fixes/* $SDTD_BASE/engine/ -R
 		fi
 
