From f0cafe67c7629ae61a3b8ce093b6a8a87f875308 Mon Sep 17 00:00:00 2001 From: Maju Date: Thu, 29 Jan 2026 23:16:06 +0100 Subject: [PATCH] Fix typo Fix typo from commit f5869d0 which results in bbox config functionality being broken. --- lua/themepark.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/themepark.lua b/lua/themepark.lua index 2723024..2465090 100644 --- a/lua/themepark.lua +++ b/lua/themepark.lua @@ -472,7 +472,7 @@ end function themepark:plugin(name) self:init_layer_groups() local ts = require('themepark/plugins/' .. name, self) - ts.self = self + ts.themepark = self return ts end