From 98bb17999dfbcf7ca4518f9c5c37a055ddc2716e Mon Sep 17 00:00:00 2001 From: Marcus Whybrow Date: Fri, 13 Jul 2012 16:51:38 +0100 Subject: [PATCH] Fixes #47. Can now put any world (not just first) into ram. --- init/msm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init/msm b/init/msm index 72e0da9..4811b9a 100755 --- a/init/msm +++ b/init/msm @@ -2583,7 +2583,7 @@ call_command() { if [[ "$sid" -ge "0" ]]; then if is_valid_name "$specified_name"; then - if [ -d "${SERVER_WORLD_ACTIVE_PATH[$sid]}/$specified_name" ] || [ -d "${SERVER_WORLD_INACTIVE_PATH[$sid]}/$specified_name" ]; then + if [ -d "${SERVER_WORLD_STORAGE[$sid]}/$specified_name" ] || [ -d "${SERVER_WORLD_STORAGE_INACTIVE[$sid]}/$specified_name" ]; then wid="$(server_world_get_id "$sid" "$specified_name")" fi fi