### this only pertains to data packs that are packaged as mods

# a Forge modloader bug seems to cause certain data pack overlays to become active during the wrong versions
# for example, running Forge 1.21.11 will cause my overlay_1_21_9 and its files to be read, even though it is designed for 1.21.9 and lower
# the functions in this directory account for certain lines I need to run that would otherwise fail entire functions when being read by the wrong version

# as an example these two lines ensure sendCommandFeedback gets toggled to false, despite the bug. one will fail, the other will succeed, depending on the version
function ac_lib:forge_supp/gamerules/scf/false/1
function ac_lib:forge_supp/gamerules/scf/false/2
# but the failed one will at least not also affect the function it is apart of

# either that, or I'm being completely dumb and just made a mistake with my overlays somewhere and I'll feel silly about this later. We'll see!