mirror of
https://github.com/TeamMidnightDust/DeliciousDishes.git
synced 2025-12-16 16:45:09 +01:00
Delicious Dishes 2.1.0 - Modernization, New Food
Today marks my 17th Birthday, and I've got something cooking up for ya'! After a 2-year hiatus, my first big feature mod Delicious Dishes makes a return! - Update from 1.16 to 1.19 - Code modernization - Switch from Cloth Config to MidnightLib - New Food: Ukrainian Borscht and Pizza Margherita - Added Glow Berry Ice Cream (applies Glowing Effect for 5 seconds) - Added Spaceburger (Can be found in chests on planets from Ad Astra!) - Added Patchouli entries for all the new features - Fixed multiple long-standing bugs - Added Bowl (right now only for Borscht, though I might add some more soups, stews and desserts in the future)
This commit is contained in:
@@ -1,21 +1,11 @@
|
||||
package eu.midnightdust.motschen.dishes.config;
|
||||
|
||||
import me.sargunvohra.mcmods.autoconfig1u.ConfigData;
|
||||
import me.sargunvohra.mcmods.autoconfig1u.annotation.Config;
|
||||
import me.sargunvohra.mcmods.autoconfig1u.annotation.ConfigEntry;
|
||||
import eu.midnightdust.lib.config.MidnightConfig;
|
||||
|
||||
@Config(name = "dishes")
|
||||
public class DishesConfig implements ConfigData {
|
||||
|
||||
@ConfigEntry.Category("main")
|
||||
@ConfigEntry.Gui.TransitiveObject
|
||||
public MainConfig main = new MainConfig();
|
||||
|
||||
@ConfigEntry.Category("worldgen")
|
||||
@ConfigEntry.Gui.TransitiveObject
|
||||
public WorldGenConfig worldgen = new WorldGenConfig();
|
||||
|
||||
@ConfigEntry.Category("trader")
|
||||
@ConfigEntry.Gui.TransitiveObject
|
||||
public IceCreamTraderConfig trader = new IceCreamTraderConfig();
|
||||
public class DishesConfig extends MidnightConfig {
|
||||
@Entry public static boolean spawnTrader = true;
|
||||
@Entry public static boolean tomatoes = true;
|
||||
@Entry public static boolean lettuce = true;
|
||||
@Entry public static boolean saltOre = true;
|
||||
@Entry public static boolean customLoot = true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user