From f3e299e3c9b0015ad8b465f0c7bb11c62e4794d5 Mon Sep 17 00:00:00 2001 From: Max Cahill <1bardesign@gmail.com> Date: Tue, 23 Nov 2021 10:45:09 +1100 Subject: [PATCH] fixed pubsub using set but not requiring it (breaks without :export()) fixes #44 --- pubsub.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pubsub.lua b/pubsub.lua index e52f975..4556718 100644 --- a/pubsub.lua +++ b/pubsub.lua @@ -4,6 +4,8 @@ local path = (...):gsub("pubsub", "") local class = require(path .. "class") +local set = require(path .. "set") + local pubsub = class({ name = "pubsub", })