mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
add /break to break out of loops
This commit is contained in:
@ -0,0 +1,7 @@
|
||||
export class SlashCommandBreakController {
|
||||
/**@type {boolean} */ isBreak = false;
|
||||
|
||||
break() {
|
||||
this.isBreak = true;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user