From 48103ac47a98d49e1a9101f38d80bcdca62ea3b6 Mon Sep 17 00:00:00 2001 From: Nano Miratus Date: Sat, 21 Feb 2026 00:37:04 +0100 Subject: [PATCH] rename B to BOUNTIFUL to make it talisman compatible --- main.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/main.lua b/main.lua index 63524bb..acbaa38 100644 --- a/main.lua +++ b/main.lua @@ -1,4 +1,4 @@ -B = {} +BOUNTIFUL = {} SMODS.Atlas{ key = 'jokers', @@ -30,7 +30,7 @@ SMODS.Atlas { py = 34 } -B.enabledJokers = { +BOUNTIFUL.enabledJokers = { 'babel', 'baitandswitch', 'bakingsoda', @@ -84,9 +84,9 @@ if not G.P_CENTER_POOLS["Food"] then } end -for i = 1, #B.enabledJokers do +for i = 1, #BOUNTIFUL.enabledJokers do pcall(function() - return NFS.load(SMODS.current_mod.path .. '/joker/' .. B.enabledJokers[i] .. '.lua')() + return NFS.load(SMODS.current_mod.path .. '/joker/' .. BOUNTIFUL.enabledJokers[i] .. '.lua')() end) end