Think I found a small bug on line 1772 of the script preventing one of the options from appearing:
$ result = renpy.random.randint(1, 3)
Should be:
$ result = renpy.random.randint(1, 4)
THank you for pointing that out, I'll look into that