Fixed, in wold memory allocation, an incorrect variable name.

This commit is contained in:
Marcus Whybrow 2012-07-20 03:05:35 +01:00
parent 6333774d6f
commit 85c66fc0ab

View File

@ -2869,7 +2869,7 @@ allocate() {
WORLD_SERVER_ID[$world_id]="$server_id"
WORLD_NAME[$world_id]="$name"
world_id="$(($id+1))"
world_id="$(($world_id+1))"
done < <(find "${SERVER_WORLD_STORAGE_PATH[$server_id]}" -mindepth 1 -maxdepth 1 -type d -print0)
fi
@ -2882,7 +2882,7 @@ allocate() {
WORLD_SERVER_ID[$world_id]="$server_id"
WORLD_NAME[$world_id]="$name"
world_id="$(($id+1))"
world_id="$(($world_id+1))"
done < <(find "${SERVER_WORLD_STORAGE_INACTIVE_PATH[$server_id]}" -mindepth 1 -maxdepth 1 -type d -print0)
fi