mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-31 20:53:34 +00:00
* Kitchen rework part 1: machines and recipes. * update oldstation * update updatepaths script number * fix blank icon test * remove old deep fryer completely * fix duped recipes and recipe datum names * add chef PDA cart to chefdrobe * nerf grill wood consumption rate * multiply food for cooking machine rating * fix runtime * add cookware to syndie base and oldstation * remove dupe burger recipe, update syndie/oldstation setups * nerf potency quality award * buff burn/ignite times, remove pointless on_fire flag * more grill woodburn nerf * meh * try and unfuck timing issues * more fixes and icon updates * more fixes * more review changes * fix linter * disable pcwj debug * fix grill and deep fryer overlays * fix timers with no containers * attempt to fix reagent adding issues * more cleanups * allow rped usage * grammar, null checks, reagent display * PDA updates, map updates * fix mats values * new panel sprites * recipe fixes, add prep bowl * revert unused icon file changes * move this to mesh with smith TM * remove food quality for now * New sprites, autochef. * fix examine text * reduce oven cook times * lots of fixes * fix autochef recipes that start with reagents * prevent shenanigans * megapatch 1 * block ingredients behind oven door * PDA app improvements * remove unused proc * fixes for cookbook, descontructions, completed steps * allow empty containers with a tracker to be claimed * allow reclaiming * autochef reliability fixes * autochef reliability fixes * fix quality product count * update updatepaths script * better stack handling * more fixes for stacks and reagents * timers no longer turn off burners automatically * autochef turn offs and make sure we can see output storage * add microwave recipe for roundremoving player brains * Apply suggestions from code review Co-authored-by: Burzah <116982774+Burzah@users.noreply.github.com> Signed-off-by: warriorstar-orion <orion@snowfrost.garden> * burza review 1 * Apply suggestions from code review Co-authored-by: Burzah <116982774+Burzah@users.noreply.github.com> Signed-off-by: warriorstar-orion <orion@snowfrost.garden> * fix berry muffin name while i'm here * grill -> microwave in new tests * grill -> microwave in new tests, but actually for realsies * i definitely know what i'm doing * redundant attack chain setting * add examine text about clearing buffer * remove unused vars and start improving docs --------- Signed-off-by: warriorstar-orion <orion@snowfrost.garden> Co-authored-by: Burzah <116982774+Burzah@users.noreply.github.com>
53 lines
1.9 KiB
Plaintext
53 lines
1.9 KiB
Plaintext
#define DEBUG
|
|
//#define TESTING
|
|
|
|
// Uncomment the following line to enable debug logging for cooking recipes.
|
|
// #define PCWJ_DEBUG
|
|
|
|
// Uncomment the following line to compile unit tests on a local server. The output will be in a test_run-[DATE].log file in the ./data folder.
|
|
// #define LOCAL_GAME_TESTS
|
|
|
|
// Uncomment the following line to enable Tracy profiling.
|
|
// DO NOT DO THIS UNLESS YOU UNDERSTAND THE IMPLICATIONS
|
|
// Your data directory will grow by about a gigabyte every time you launch the server, as well as introducing potential instabilities over multiple BYOND versions.
|
|
// #define ENABLE_BYOND_TRACY
|
|
|
|
// Uncomment this to enable support for multiple instances
|
|
// #define MULTIINSTANCE
|
|
|
|
#ifdef LOCAL_GAME_TESTS
|
|
#define GAME_TESTS
|
|
#define MAP_TESTS
|
|
#endif
|
|
|
|
#if defined(CIBUILDING) && defined(LOCAL_GAME_TESTS)
|
|
#error CIBUILDING and LOCAL_GAME_TESTS should not be enabled at the same time!
|
|
#endif
|
|
|
|
#if defined(GAME_TESTS) || defined(MAP_TESTS)
|
|
#define TEST_RUNNER
|
|
#endif
|
|
|
|
/***** All toggles for the GC ref finder *****/
|
|
|
|
// #define REFERENCE_TRACKING // Uncomment to enable ref finding
|
|
|
|
// #define GC_FAILURE_HARD_LOOKUP //makes paths that fail to GC call find_references before del'ing.
|
|
|
|
// #define FIND_REF_NO_CHECK_TICK //Sets world.loop_checks to false and prevents find references from sleeping
|
|
|
|
// #define FIND_REF_NOTIFY_ON_COMPLETE // Throw a windows notification toast when the ref finding process is done
|
|
|
|
/***** End toggles for the GC ref finder *****/
|
|
|
|
#define IS_MODE_COMPILED(MODE) (ispath(text2path("/datum/game_mode/"+(MODE))))
|
|
|
|
//Update this whenever you need to take advantage of more recent byond features
|
|
#define MIN_COMPILER_VERSION 515
|
|
#define MIN_COMPILER_BUILD 1619
|
|
#if DM_VERSION < MIN_COMPILER_VERSION || DM_BUILD < MIN_COMPILER_BUILD
|
|
//Don't forget to update this part
|
|
#error Your version of BYOND is too out-of-date to compile this project. Go to secure.byond.com/download and update.
|
|
#error You need version 515.1619 or higher
|
|
#endif
|