Skip to content

Commit

Permalink
copy-pasta hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
stohrendorf committed Jan 5, 2022
1 parent 7c06178 commit d8eb146
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required( VERSION 3.16 )
list( APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake )

project( EdisonEngine VERSION 0.11 )
project( EdisonEngine VERSION 0.11.1 )

cmake_policy( SET CMP0069 NEW )
cmake_policy( SET CMP0094 NEW )
Expand Down
2 changes: 1 addition & 1 deletion src/engine/objects/door.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Door::Door(const std::string& name,
m_target.init(*m_info.originalSector.boundaryRoom, m_state.location.position);
if(m_info.originalSector.boundaryRoom->alternateRoom != nullptr)
{
Expects(m_alternateInfo.originalSector.boundaryRoom != nullptr);
Expects(m_info.originalSector.boundaryRoom != nullptr);
m_alternateTarget.init(*m_info.originalSector.boundaryRoom->alternateRoom, m_state.location.position);
}

Expand Down

0 comments on commit d8eb146

Please sign in to comment.