From bdf943b1f156911c044cfa5f54134e5ee6e7c3e4 Mon Sep 17 00:00:00 2001 From: nea Date: Mon, 31 Jul 2023 01:33:29 +0200 Subject: Remove old debug log --- src/main/kotlin/moe/nea/firmament/features/chat/ImagePreview.kt | 1 - 1 file changed, 1 deletion(-) (limited to 'src/main/kotlin/moe') diff --git a/src/main/kotlin/moe/nea/firmament/features/chat/ImagePreview.kt b/src/main/kotlin/moe/nea/firmament/features/chat/ImagePreview.kt index 90edac3..e612995 100644 --- a/src/main/kotlin/moe/nea/firmament/features/chat/ImagePreview.kt +++ b/src/main/kotlin/moe/nea/firmament/features/chat/ImagePreview.kt @@ -37,7 +37,6 @@ object ImagePreview : FirmamentFeature { val allowAllHosts by toggle("allow-all-hosts") { false } val allowedHosts by string("allowed-hosts") { "cdn.discordapp.com,media.discordapp.com,media.discordapp.net,i.imgur.com" } val actualAllowedHosts get() = allowedHosts.split(",").map { it.trim() } - val screenPercentage by integer("percentage", 10, 100) { 50 } val position by position("position", 16 * 20, 9 * 20) { Point(0.0, 0.0) } } -- cgit