Skip to content

Fixed some minor typos I noticed while coding, all completely cosmetic. #192

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Sep 4, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions init/msm
Original file line number Diff line number Diff line change
Expand Up @@ -1660,7 +1660,7 @@ server_connected() {
fi
}

# Sets the valud of a server property
# Sets the value of a server property
# $1: The ID of the server
# $2: The name of the server property
# $3: The value for the property
Expand Down Expand Up @@ -1705,7 +1705,7 @@ server_property() {
if [[ -z "${VERSIONS_NEWEST_MINECRAFT_PATH}" ]]; then
msm_warning "No version set for server, and no default found. Please use 'msm update' to download defaults"
else
msm_info "Assuming 'minecraft/${VERSIONS_NEWEST_MINECRAFT_VERSION}' for this server.You should override this value by adding 'msm-version=minecraft/x.x.x' to '${SERVER_CONF[$1]}' to make this message go away"
msm_info "Assuming 'minecraft/${VERSIONS_NEWEST_MINECRAFT_VERSION}' for this server. You should override this value by adding 'msm-version=minecraft/x.x.x' to '${SERVER_CONF[$1]}' to make this message go away"
SERVER_VERSION_CONF[$1]="${VERSIONS_NEWEST_MINECRAFT_PATH}"
fi
else
Expand Down Expand Up @@ -1772,7 +1772,7 @@ server_property() {
eval SERVER_$2[$1]=\"\$SETTINGS_DEFAULT_$2\"
fi

### Post-changes to varibales after loading
### Post-changes to variables after loading

# If it is a path make that path absolute
if [[ "$2" =~ _PATH$ ]]; then
Expand Down