Skip to content

Commit

Permalink
fix(content): Split text searching bananacrate (#1064)
Browse files Browse the repository at this point in the history
Splits text you get when you search bananacrate after adding only rum
  • Loading branch information
kennethedmonds authored Jan 8, 2025
1 parent 8bf6034 commit dc01a80
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion data/src/scripts/quests/quest_hunt/scripts/banana_crate.rs2
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
if (%crate_bananas = 0 & %crate_rum = 0) {
mes("The crate is completely empty.");
} else if (%crate_bananas = 0 & %crate_rum = 1) {
mes("There is some rum in here, although with no bananas to cover it. It is a little obvious.");
mes("There is some rum in here, although with no bananas to cover it.");
mes("It is a little obvious.");
} else {
if (%crate_bananas = 10) {
mes("The crate is full of bananas.");
Expand Down

0 comments on commit dc01a80

Please sign in to comment.