From f3ef1ca2ae069cd9498fca4126394730c32fea77 Mon Sep 17 00:00:00 2001 From: Julian Krings Date: Sat, 4 Oct 2025 13:40:07 +0200 Subject: [PATCH] fix typo in preprocessors description --- .../main/java/com/volmit/iris/core/loader/IrisRegistrant.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/volmit/iris/core/loader/IrisRegistrant.java b/core/src/main/java/com/volmit/iris/core/loader/IrisRegistrant.java index b20ac02d4..123fd6f2e 100644 --- a/core/src/main/java/com/volmit/iris/core/loader/IrisRegistrant.java +++ b/core/src/main/java/com/volmit/iris/core/loader/IrisRegistrant.java @@ -35,7 +35,7 @@ import java.io.File; @Data public abstract class IrisRegistrant { - @Desc("Preprocess this object in-memory when it's loaded, run scripts using the variable 'object' and modify properties about this object before it's used.\nFile extension: .prox.kts") + @Desc("Preprocess this object in-memory when it's loaded, run scripts using the variable 'object' and modify properties about this object before it's used.\nFile extension: .proc.kts") @RegistryListResource(IrisScript.class) @ArrayType(min = 1, type = String.class) private KList preprocessors = new KList<>();