From 91a6076b0a37c16cc07350e40c9d37e7b025200a Mon Sep 17 00:00:00 2001 From: Lukellmann Date: Sat, 2 Jul 2022 23:58:38 +0200 Subject: [PATCH] Add error 50600 --- rest/src/main/kotlin/json/JsonErrorCode.kt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rest/src/main/kotlin/json/JsonErrorCode.kt b/rest/src/main/kotlin/json/JsonErrorCode.kt index 0c6c951154a1..956f3dffdcec 100644 --- a/rest/src/main/kotlin/json/JsonErrorCode.kt +++ b/rest/src/main/kotlin/json/JsonErrorCode.kt @@ -425,6 +425,9 @@ public enum class JsonErrorCode(public val code: Int) { /** The request body contains invalid JSON. */ InvalidJsonInRequestBody(50109), + /** You do not have permission to send this sticker. */ + StickerPermissionLack(50600), + /** Two factor is required for this operation. */ Require2FA(60003),