-
Notifications
You must be signed in to change notification settings - Fork 12
Description
It was reported on discord that the vanilla game has a text line, which our mod is missing. I checked it out, and it looks like it is a censored line, but it is just missing from our script, rather than being gated on the voice matching level.
In Himatsubushi (hima_002_03.txt):
Oh, that place where the girls dress up in gym clothes and maid uniforms?
I listened to the voice line, and it completely excludes this line (likely censored) so the text line will need to be under a voice matching level flag.
Looking at our mod script, I think the whole line in question (right above where the existing voice matching if statement is) should be put into the branching scripts. The part starting from //「あぁ、女の子が体操服にメイドさんな格好で出てくるってお店@ おやっさんも好きだなぁ~!@ 私はもちろん花びら大回転なお店をハシゴしまくりですよ@ べろべろべろ~~!!@ むっはっはっはっは!@ サトさんはどうします?¥
which branches into
if(GetGlobalFlag(GCensor) >= 4){ModCallScriptSection("hima_002_03_vm0x_n01","dialog009");}
if(GetGlobalFlag(GCensor) <= 3){ModCallScriptSection("hima_002_03_vm00_n01","dialog009");}
tbh I'm not familiar so I don't know which script is the less censored one, but one of the scripts would have the line, and the other one wouldn't.