Fixed a ChoiceScript bug: blank lines at the end of *if

I’m pretty sure everything’s working exactly the way it’s supposed to, but you may not like the way it looks.

*create leadership 50
*create strength 50

This
is
all
one
line.

This is a new paragraph.

And this
*line_break
is two lines.

Here's another paragraph.

This paragraph ends with a true *if statement.
*if leadership = 50
  Leadership = 50.

Here's the next paragraph, which ends with a false *if statement.
*if leadership = 40
  Leadership = 40

Here's the last paragraph.

Looks like this:

I would transcribe that as:

This is all one line.

This is a new paragraph.

And this
is two lines.

Here’s another paragraph.

This paragraph ends with a true *if statement. Leadership = 50.

Here’s the next paragraph, which ends with a false *if statement.

Here’s the last paragraph.

  1. Is that what you see as well?
  2. Is that what you’d expect? If not, what would you expect instead?