Skip to content
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

add missing failed movement message #335

Merged
merged 2 commits into from
Jan 27, 2024
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions external/zlib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ else()
message(STATUS "Could not find system zlib; building as a static library")
include(ExternalProject)
ExternalProject_Add(zlib
URL "https://www.zlib.net/zlib-1.3.tar.gz"
URL_HASH SHA256=ff0ba4c292013dbc27530b3a81e1f9a813cd39de01ca5e0f8bf355702efa593e
URL "https://www.zlib.net/zlib-1.3.1.tar.gz"
URL_HASH SHA256=9a93b2b7dfdac77ceba5a558a580e74667dd6fede4585b91eefb60f03b72df23

SOURCE_DIR "${CMAKE_CURRENT_BINARY_DIR}/zlib-src"
BINARY_DIR "${CMAKE_CURRENT_BINARY_DIR}/zlib-build"
Expand Down
1 change: 1 addition & 0 deletions src/parser/AbstractParser-Actions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,7 @@ void AbstractParser::initActionMap()
addStartsWith("Your mount refuses to follow your orders!", failedMovement);
addStartsWith("You failed swimming there.", failedMovement);
addStartsWith("You can't go into deep water!", failedMovement);
addStartsWith("You cannot ride into deep water!", failedMovement);
addStartsWith("You unsuccessfully try to break through the ice.", failedMovement);
addStartsWith("Your boat cannot enter this place.", failedMovement);
addStartsWith("Alas, you cannot go that way...", failedMovement);
Expand Down
Loading