add missing break line (#578)

# PR Checklist
- [ ] Did you check if it works normally in all models? *ignore this
when it dosen't uses models*
- [ ] Did you check if it works normally in all of web, local and node
hosted versions? if it dosen't, did you blocked it in those versions?
- [ ] Did you added a type def?

# Description
There appears to be a minor mistake here.
This commit is contained in:
kwaroran
2024-07-24 09:30:49 +09:00
committed by GitHub

View File

@@ -403,6 +403,7 @@ export async function runTrigger(char:character,mode:triggerMode, arg:{
case 'input':{
const val = await alertInput(effectValue)
setVar(inputVar, val)
break;
}
case 'select':{
const val = await alertSelect(effectValue.split('§'))