diff --git a/code/modules/overmap/exoplanets/exoplanet.dm b/code/modules/overmap/exoplanets/exoplanet.dm index e0c00090982..5883933fea9 100644 --- a/code/modules/overmap/exoplanets/exoplanet.dm +++ b/code/modules/overmap/exoplanets/exoplanet.dm @@ -99,6 +99,8 @@ /obj/effect/overmap/visitable/sector/exoplanet/New(loc, max_x, max_y, being_generated_for_unit_test = FALSE) + #if defined(UNIT_TEST) + //If we are being generated for unit testing, determine if we actually want to be generated here or not if(being_generated_for_unit_test) @@ -121,6 +123,8 @@ qdel_self() return FALSE + #endif //UNIT_TEST + if(!SSatlas.current_map.use_overmap) return diff --git a/html/changelogs/fluffyghost-fixbuilderror.yml b/html/changelogs/fluffyghost-fixbuilderror.yml new file mode 100644 index 00000000000..7496ae3061a --- /dev/null +++ b/html/changelogs/fluffyghost-fixbuilderror.yml @@ -0,0 +1,41 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +# admin +# backend +# security +# refactor +################################# + +# Your name. +author: FluffyGhost + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - bugfix: "Fixed the build outside the CI, forgot that SSunit_tests_config is only defined if the code is compiled within the CI." diff --git a/maps/exoplanet_testing/exoplanet_testing.dm b/maps/exoplanet_testing/exoplanet_testing.dm index d0aabd07773..3aaafa751a8 100644 --- a/maps/exoplanet_testing/exoplanet_testing.dm +++ b/maps/exoplanet_testing/exoplanet_testing.dm @@ -1,3 +1,5 @@ +#if defined(UNIT_TEST) + /datum/map/exoplanet_testing name = "Exoplanet Testing" full_name = "Exoplanet Testing Map" @@ -124,3 +126,5 @@ /datum/map/exoplanet_testing/build_away_sites() return + +#endif //UNIT_TEST