From 1ce60d1bfb5d30af102265bf1204234836c05475 Mon Sep 17 00:00:00 2001 From: FatttSnake Date: Wed, 31 Jan 2024 18:07:01 +0800 Subject: [PATCH] Add PROCESSING to Tool.ReviewType --- src/main/kotlin/top/fatweb/oxygen/api/entity/tool/Tool.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/top/fatweb/oxygen/api/entity/tool/Tool.kt b/src/main/kotlin/top/fatweb/oxygen/api/entity/tool/Tool.kt index ae485ff..a06d660 100644 --- a/src/main/kotlin/top/fatweb/oxygen/api/entity/tool/Tool.kt +++ b/src/main/kotlin/top/fatweb/oxygen/api/entity/tool/Tool.kt @@ -21,7 +21,7 @@ class Tool { * @since 1.0.0 */ enum class ReviewType(@field:EnumValue @field:JsonValue val code: String) { - NONE("NONE"), PASS("PASS"), REJECT("REJECT") + NONE("NONE"), PROCESSING("PROCESSING"), PASS("PASS"), REJECT("REJECT") } /**