Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
Malacath-92 committed Jan 28, 2022
1 parent 56ef479 commit a291819
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.13.0] - 2021-01-25
## [0.13.0] - 2021-01-28

<img src="https://img.shields.io/badge/Spelunky 2-1.25.2-orange">

### Added
- Bugfix for vines that have 0, 3 or 4 connecting vines (thanks Omelette)

### Changed
- Bumped the supported version of Spelunky

Expand Down
1 change: 0 additions & 1 deletion source/playlunky/mod/bug_fixes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ bool InitBugFixes(VirtualFilesystem& /*vfs*/,
const auto right = g_GetNeighbouringThorns(thorns, 0.0f, -1.0f) & 0x1;
const auto top = g_GetNeighbouringThorns(thorns, 1.0f, 0.0f) & 0x1;
const auto bottom = g_GetNeighbouringThorns(thorns, -1.0f, 0.0f) & 0x1;
//const auto mask = top | (bottom << 1) | (left << 2) | (right << 3);
const auto mask = left | (right << 1) | (top << 2) | (bottom << 3);
const auto texture_tile = [mask]() -> uint16_t
{
Expand Down

0 comments on commit a291819

Please sign in to comment.