Sorry to keep posting the same question over and over just hoping to add as much info as possible to see if anyone can crack the case cause I've got a fairly tight deadline for finishing this project. Whenever I use (if:) (else:) macros in Harlowe 1.2.3. it only creates one link out of the ones I request it to. For example this,
{
[
(if: $package is true)[
[[Explore the house]]
[[Alert the guards]]
]
(else:)[
[[Open the package]]
[[Explore the house]]
[[Alert the guards]]
]
}
only creates a link for [[Open the package]]. It evens happens when I open a new story and paste it into an independent passage. Can anyone think of why this is?
I tried changing my macros to be,
{
[
(if: $package)[
[[Explore the house]]
[[Alert the guards]]
]
(else:)[
[[Open the package]]
[[Explore the house]]
[[Alert the guards]]
]
}
but that only made the issues worse.
If anyone has seen this problem before your help would be greatly appreciated :))