- Aug 29, 2020
- 1,937
- 3,666
CHAQUINN 0
When the MC is in the park with Julia and Julia_route is false he has the option to kiss her which sets julia_route to true. This is also supposed to increment julia_affection by one. However instead of the intended
julia_affection += 1
the actual code is
julia_affection =+1
forcing julia_affection to a value of 1 instead of the 6 that you intended.
Thanks to Sancho for showing me the unexpected result and URM for showing the coding error.
Great tools gentlemen
When the MC is in the park with Julia and Julia_route is false he has the option to kiss her which sets julia_route to true. This is also supposed to increment julia_affection by one. However instead of the intended
julia_affection += 1
the actual code is
julia_affection =+1
forcing julia_affection to a value of 1 instead of the 6 that you intended.
Thanks to Sancho for showing me the unexpected result and URM for showing the coding error.
Great tools gentlemen