From 5e6faa356652176f68d4dd5b14dffb3f9bcf06e1 Mon Sep 17 00:00:00 2001
From: dg <dg@51575b47-30f0-44d4-a5cc-537603b46e54>
Date: Sat, 29 Jan 2011 12:21:25 +0000
Subject: [PATCH] The game will not switch to development profile if online
 profile is not logged in

git-svn-id: http://svn.net-core.org/repos/t-engine4@2542 51575b47-30f0-44d4-a5cc-537603b46e54
---
 game/engines/default/engine/Module.lua | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/game/engines/default/engine/Module.lua b/game/engines/default/engine/Module.lua
index d907534b50..b9824f7e48 100644
--- a/game/engines/default/engine/Module.lua
+++ b/game/engines/default/engine/Module.lua
@@ -235,7 +235,7 @@ function _M:instanciate(mod, name, new_game, no_reboot)
 	local hash_valid, hash_err = profile:checkModuleHash(mod.version_name, fmd5)
 
 	-- If bad hash, switch to dev profile
-	if not hash_valid then
+	if not hash_valid and not profile.auth then
 		print("[PROFILE] switching to dev profile")
 		_G.profile = engine.PlayerProfile.new("dev")
 	end
-- 
GitLab