say "[if ..." inserting line breaks. [solved]

Sorry for what is probably a stupid question, but I couldn’t fix this from looking at the documentation.

This:

[code]The kitchen is a room.

NUMBER_OF_FROGS is a number variable. NUMBER_OF_FROGS is 0.

A woman called frog-lover is here.

Every turn:
increase NUMBER_OF_FROGS by 1;
say “‘[if NUMBER_OF_FROGS is 1]Hello. [end if]Look[if NUMBER_OF_FROGS is greater than 1]![otherwise].[end if] Aren’t froggies great!’”.[/code]

inserts a line break for some reason, resulting in this:

How can I fix this so that it’s all on one line?

Try this.

[code]The kitchen is a room.

NUMBER_OF_FROGS is a number variable. NUMBER_OF_FROGS is 0.

A woman called frog-lover is here.

Every turn:
increase NUMBER_OF_FROGS by 1;
say “’[if NUMBER_OF_FROGS is 1]Hello. [end if]Look[if NUMBER_OF_FROGS is greater than 1]! [otherwise]. [end if]Aren’t froggies great!’”.[/code]

It’s all in the spacing!

Hope this helps.

Thanks climbingstars!