Dimitri57 Found a bug...
Lines 7003-7007 of ep4.rpy
if della_points >= 0:
jump tob_night_two3 # bruised, alone #####################
elif della_points <= 1:
jump tob_night_two2 # bruised, Jessy met SD
The way it is, we always jump to tob_night_two3 whether Jessy met Stan and Della or not because there is only 1 della_point available so far in the game. We only have two possible states: 1 point or 0 points both of which meet the first if-condition.
I'm not sure basing this branch on della_points is the best solution anyway since it is possible to take Jessy with you and still not get the della_point. It's probably better to set a flag (something like ep4_jessy_met_SD = True/False) and use that for the testing in this if block.
Enjoying the new characters!