mirror of
https://github.com/TeamMidnightDust/DeliciousDishes.git
synced 2025-12-15 16:15:09 +01:00
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)
12 lines
406 B
Java
12 lines
406 B
Java
package eu.midnightdust.motschen.dishes.config;
|
|
|
|
import eu.midnightdust.lib.config.MidnightConfig;
|
|
|
|
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;
|
|
}
|