Weird Intendation Problem (SOLVED)

So, I’m writing my code and a weird error pops up. “prologue line 40: Increasing indent not allowed, expected 0 was 1”. What does that mean?

CODE DOWN BELOW

*label choose_beard
#Slick (LINE 40)
“Now what reason did you have for keeping your beard unshaved for months?”, your wife says. “Come on, it looks ‘Slick’”, you reply.
*set Beard “Slick”
*goto in_house
#5 O’ Clock Shave
“Honey, what do you think?”, you say. “It could use a little work”.
*set Beard “5 O’ Clock Shave”
*goto in_house
#Survivalist
“The times are rough”, you say to yourself.
*set Beard “Survivalist”
*goto in_house
#Classy Nick
“Perfect”, your wife says.
*set Beard “Classy Nick”
*goto in_house

It means at line 40 you’ve put a space or tab. Remove it to fix the code.

It seems that I solved it. It was a stupid mistake actually, I forgot to add the *choice command after the *label one. Thanks anyway.:slightly_smiling:

No problem, glad to help. :slightly_smiling: I think there is a way for you to post codes with the indention like this so you can easily share what codes you have needs some help.

*fake_choice
    #Tell her you have a name. [i]Sarcastic response[/i]
        *set meruru_respect - 5
        Meruru merely looks at you with a smile, but you see it falter.
    #Tell her you have a name. [i]Friendly response[/i]
        *set meruru_respect + 5
        Meruru gave you a friendly smile.
    #Tell her you have a name. [i]Offended response[/i]
        *set meruru_respect - 5
        Meruru scowled, but she quickly replaced it with a smile even if the smile is forced.
    #Tell her you have a name. [i]Neutral response[/i]
        *set meruru_respect + 5
        Meruru laughed at your response and gave you an apologetic smile.

Thanks for the advice, boredhypocrite!