Two warnings in SWWMDialogues.StartSeq should be vm aborts instead.
This commit is contained in:
parent
e66415dd91
commit
47722e58a9
2 changed files with 4 additions and 4 deletions
|
|
@ -1,3 +1,3 @@
|
|||
[default]
|
||||
SWWM_MODVER="\cyDEMOLITIONIST \cw1.3pre r1188 \cu(mié 26 feb 2025 14:20:26 CET)\c-";
|
||||
SWWM_SHORTVER="\cw1.3pre r1188 \cu(2025-02-26 14:20:26)\c-";
|
||||
SWWM_MODVER="\cyDEMOLITIONIST \cw1.3pre r1189 \cu(mié 05 mar 2025 20:34:06 CET)\c-";
|
||||
SWWM_SHORTVER="\cw1.3pre r1189 \cu(2025-03-05 20:34:06)\c-";
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ Class SWWMDialogues abstract
|
|||
{
|
||||
if ( dlg == "" )
|
||||
{
|
||||
if ( developer >= 2 ) Console.Printf("StartSeq: bogus call with empty dialogue name, check your code.");
|
||||
ThrowAbortException("bogus call to StartSeq with empty dialogue name, check your code.");
|
||||
return;
|
||||
}
|
||||
// load the lump for parsing
|
||||
|
|
@ -39,7 +39,7 @@ Class SWWMDialogues abstract
|
|||
}
|
||||
if ( cur == -1 )
|
||||
{
|
||||
if ( developer >= 2 ) Console.Printf("ProcessDlg: sequence '%s' not found",dlg);
|
||||
ThrowAbortException("dialogue sequence '%s' not found",dlg);
|
||||
return;
|
||||
}
|
||||
// start parsing from here
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue