From efe630b58e69677b5a7402b7e87bc2ab9fbcccf1 Mon Sep 17 00:00:00 2001 From: Graham Nelson Date: Sun, 10 Apr 2022 09:22:27 +0100 Subject: [PATCH] Fix for Mantis bug 2004 --- .../Inter/BasicInformExtrasKit/Sections/Activities.i6t | 4 ++-- inform7/Internal/Inter/WorldModelKit/Sections/Activities.i6t | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/inform7/Internal/Inter/BasicInformExtrasKit/Sections/Activities.i6t b/inform7/Internal/Inter/BasicInformExtrasKit/Sections/Activities.i6t index 83c73218a1..cbe14f5f52 100644 --- a/inform7/Internal/Inter/BasicInformExtrasKit/Sections/Activities.i6t +++ b/inform7/Internal/Inter/BasicInformExtrasKit/Sections/Activities.i6t @@ -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. @@ -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); ]; diff --git a/inform7/Internal/Inter/WorldModelKit/Sections/Activities.i6t b/inform7/Internal/Inter/WorldModelKit/Sections/Activities.i6t index 5fb778fcd8..025e8c53f0 100644 --- a/inform7/Internal/Inter/WorldModelKit/Sections/Activities.i6t +++ b/inform7/Internal/Inter/WorldModelKit/Sections/Activities.i6t @@ -152,7 +152,7 @@ yet the current action. MStack_DestroyAVVars(A); return rv; } - return RunTimeProblem(RTP_CANTABANDON); + return RunTimeProblem(RTP_CANTEND); ]; @h Abandon. @@ -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); ];