Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
medsal15 committed Dec 6, 2023
1 parent 614cc28 commit 102366c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/layers/1/loot.js
Original file line number Diff line number Diff line change
Expand Up @@ -2474,7 +2474,7 @@ addLayer('lo', {
lines = [];
let sources = item.sources ?? {};

if (inChallenge('b', 52) || hasChallenge('b', 52)) sources = layers.cas.items.sources(item_id);
if ((inChallenge('b', 52) || hasChallenge('b', 52)) && !tmp.cas.deactivated) sources = layers.cas.items.sources(item_id);

if ('chances' in sources && sources.chances) {
lines.push(
Expand Down
4 changes: 3 additions & 1 deletion js/mod.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ let VERSION = {
/**
* The mod's version number, displayed at the top right of the tree tab.
*/
num: 'R0.B.2',
num: 'R0.B.3',
/**
* The version's name, displayed alongside the number in the info tab.
*/
Expand All @@ -79,6 +79,8 @@ let VERSION = {
* HTML displayed in the changelog tab
*/
let changelog = `<h1>Changelog:</h1><br>
<h3>v0.B.3</h3><br>
- Casino no longer affects the game while deactivated.<br>
<h3>v0.B.2</h3><br>
- Fixed a Bingo and Time Cubes not working.<br>
<h3>v0.B.1</h3><br>
Expand Down

0 comments on commit 102366c

Please sign in to comment.