From 7ec010b03fd7773b305f97f52ff1f2c576f7a7a3 Mon Sep 17 00:00:00 2001 From: "Infineon\\StieberD" Date: Thu, 28 Aug 2025 14:38:42 -0700 Subject: [PATCH] Modified validation to allow ASM parts to be installed into ASM+ reactors --- LSL2/STPROC/OBJ_REACTOR_LOG.txt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/LSL2/STPROC/OBJ_REACTOR_LOG.txt b/LSL2/STPROC/OBJ_REACTOR_LOG.txt index 9e0675d..792b654 100644 --- a/LSL2/STPROC/OBJ_REACTOR_LOG.txt +++ b/LSL2/STPROC/OBJ_REACTOR_LOG.txt @@ -138,7 +138,8 @@ PostReactItems: ValidationFailureReason = 'Unable to install Reactor Item No. ' : InstRINo : '. Serial Number cannot be blank to non-elevator Reactor Items.' end end - If (InstRIRec NE ReactorType) then + // Only check first three characters so that ASM parts can be installed in an ASM+ reactor + If (InstRIRec[1, 3] NE ReactorType[1, 3]) then ValidationFailureReason = 'Unable to install Reactor Item No. ' : InstRINo : '. Reactor Type must match Reactor Item Part Type.' end Until ValidationFailureReason NE '' @@ -408,5 +409,3 @@ RemHistKeys: RETURN - -