mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-21 06:25:59 +00:00
Includes a unit test because TDD is good. Why It's Good For The Game It makes transport through space with friends much more annoying than it should be. Changelog cl fix: Fixed a bug where when teleporting naturally (such as going through a z-level in space), if you were pulling someone that was then pulling another person, only you and the person you were pulling would make it through. /cl
19 lines
526 B
Plaintext
19 lines
526 B
Plaintext
//include unit test files in this module in this ifdef
|
|
//Keep this sorted alphabetically
|
|
|
|
#ifdef UNIT_TESTS
|
|
#include "anchored_mobs.dm"
|
|
#include "bespoke_id.dm"
|
|
#include "card_mismatch.dm"
|
|
#include "chain_pull_through_space.dm"
|
|
#include "component_tests.dm"
|
|
#include "plantgrowth_tests.dm"
|
|
#include "reagent_id_typos.dm"
|
|
#include "reagent_recipe_collisions.dm"
|
|
#include "spawn_humans.dm"
|
|
#include "species_whitelists.dm"
|
|
#include "subsystem_init.dm"
|
|
#include "timer_sanity.dm"
|
|
#include "unit_test.dm"
|
|
#endif
|