Add a mod to configure jei

This commit is contained in:
Alex Pickering 2024-05-07 11:12:14 -05:00
parent 3634220ff5
commit 89e3712f8f
2 changed files with 5 additions and 3 deletions

View File

@ -14,8 +14,9 @@ local config = {
version="0.0.1",
bucket_name="txweaboo", --aws s3 bucket, created manually to prevent terraform from trying to delete it.
instance_name="Weaboos Anonymous", -- Name to use for the multimc instance
server_starts="1 11 * * 1,4", --Starts at 4pm on Mondays and Thursdays
server_stops="1 19 * * 1,4", --Server stops at 1am on Tuesdays and Fridays
-- Cron uses UTC time
server_starts="1 21 * * 1,4", --Starts at 4pm on Mondays and Thursdays
server_stops="1 6 * * 2,5", --Server stops at 1am on Tuesdays and Fridays
}
-- Each machine gets a startup script, located in src/startup that configures
@ -148,6 +149,7 @@ config.mods = {
-- Just enough items
"https://cdn.modrinth.com/data/uEfK2CXF/versions/FjwDwtUL/JustEnoughResources-Fabric-1.20.4-1.5.0.4.jar",
"https://cdn.modrinth.com/data/9Pk89J3g/versions/rWDKPxQZ/justenoughbreeding-fabric-1.20.4-1.2.1.jar",
"https://mrcrayfish.com/mods/configured/download/d82da7a0a24aceac44242dde3eaff11f5acbeac3",
-- Lightmatica - blueprints
"https://cdn.modrinth.com/data/GcWjdA9I/versions/kZJWQDi6/malilib-fabric-1.20.4-0.18.1.jar",
"https://masa.dy.fi/mcmods/litematica/litematica-fabric-1.20.4-0.17.3-pre.1.jar",

View File

@ -19,7 +19,7 @@
var stops_sched = "<%- config.server_stops %>";
var starts = later.parse.cron(starts_sched);
var stops = later.parse.cron(stops_sched);
var offset = -(new Date().getTimezoneOffset() / 60)
var offset = -(new Date().getTimezoneOffset() / 60);
var cronstrue;
var soon_el, starts_el, stops_el;