kone
소미소프트

소미소프트

AI번역) 장난감으로 가버릴 때까지 나갈 수 없습니다!! ver.1.03 250808

11/24/2025, 11:38:13
피드백
8648 views · 14 likes
1


19일에 했을 때 기준으로 선택지에서 띄어쓰기 짤림 현상이 있습니다


https://arca.live/b/404notfound/135629448

이 글을 참조하여


LL_GalgeChoiceWindowMV.js를 열어서


var choices = args[1].split(','); → var choices = args.slice(1).join(' ').split(',');

choiceLists.push(String(elm)); → choiceLists.push(String(elm.trim()));


var messageText = String(args[1] || ""); → var messageText = args.slice(1).join(' ');

messageTextLists.push(String(args[1] || "")); → messageTextLists.push(String(messageText));


고치면


1


정상적으로 나옵니다

14
2 comments
Sign in to comment
11/24/25 Edited 11/24/25
아니 뭐야 수정 방법도 알려주셨네...급하게 고치느라 못 보고 무식하게 공백문자로 바꿨는데 ㅠㅠ 잘 배워갑니다

Deleted comment.

Sign in to comment