Skip to content

Commit

Permalink
Fix for Mantis bug 2004
Browse files Browse the repository at this point in the history
  • Loading branch information
ganelson committed Apr 10, 2022
1 parent 3172f5a commit efe630b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Expand Up @@ -138,7 +138,7 @@ simple routine, but some are run by calling the three subroutines independently.
MStack_DestroyAVVars(A);
return rv;
}
return RunTimeProblem(RTP_CANTABANDON);
return RunTimeProblem(RTP_CANTEND);
];

@h Abandon.
Expand All @@ -153,5 +153,5 @@ activity must be being run by calling the three stages individually, and
MStack_DestroyAVVars(A);
return;
}
return RunTimeProblem(RTP_CANTEND);
return RunTimeProblem(RTP_CANTABANDON);
];
4 changes: 2 additions & 2 deletions inform7/Internal/Inter/WorldModelKit/Sections/Activities.i6t
Expand Up @@ -152,7 +152,7 @@ yet the current action.
MStack_DestroyAVVars(A);
return rv;
}
return RunTimeProblem(RTP_CANTABANDON);
return RunTimeProblem(RTP_CANTEND);
];

@h Abandon.
Expand All @@ -167,5 +167,5 @@ activity must be being run by calling the three stages individually, and
MStack_DestroyAVVars(A);
return;
}
return RunTimeProblem(RTP_CANTEND);
return RunTimeProblem(RTP_CANTABANDON);
];

0 comments on commit efe630b

Please sign in to comment.