From 87726989d0ae5653b70e0da0d0c218e606755583 Mon Sep 17 00:00:00 2001 From: Emik Date: Fri, 13 Feb 2026 22:02:16 +0100 Subject: [PATCH] Make void non-hidden in Cryptid --- src/spectral.lua | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/spectral.lua b/src/spectral.lua index 4482321..761684c 100644 --- a/src/spectral.lua +++ b/src/spectral.lua @@ -1,5 +1,9 @@ local f, q, u = unpack(... or require "src.functional") +if false then + Cryptid = Cryptid -- Suppresses warnings about the global. +end + local spectral = (function() local x = 0 @@ -108,10 +112,10 @@ spectral { spectral { key = "void", - hidden = true, - soul_rate = 0.003, - soul_set = "Spectral", pronouns = "it_its", + hidden = not Cryptid, + soul_rate = not Cryptid and 0.003 or nil, + soul_set = not Cryptid and "Spectral" or nil, config = {extra = {amount = 2}}, loc_vars = function(_, info_queue, card) table.insert(info_queue, G.P_CENTERS.e_negative)