Skip to content

Commit

Permalink
Merge pull request #454 from dwasint/whats-this
Browse files Browse the repository at this point in the history
fixes tests
  • Loading branch information
dwasint authored Oct 14, 2023
2 parents 80be01c + fb5bea2 commit a29e425
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 1 deletion.
12 changes: 11 additions & 1 deletion _maps/map_files/generic/CentCom.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -9305,6 +9305,13 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/white/textured,
/area/centcom/central_command_areas/evacuation/ship)
"No" = (
/obj/effect/turf_decal/tile/dark/opposingcorners,
/obj/effect/portal/permanent{
id = "arena"
},
/turf/open/floor/iron/dark,
/area/centcom/tdome/observation)
"Nq" = (
/obj/effect/turf_decal/siding/wood{
dir = 5
Expand Down Expand Up @@ -10904,6 +10911,9 @@
dir = 8
},
/obj/machinery/light/floor/has_bulb,
/obj/effect/portal/permanent{
id = "arena"
},
/turf/open/floor/wood/parquet,
/area/centcom/central_command_areas/borbop)
"Uz" = (
Expand Down Expand Up @@ -52202,7 +52212,7 @@ TV
qM
Mo
Jd
ew
No
dh
QC
aa
Expand Down
3 changes: 3 additions & 0 deletions code/modules/unit_tests/create_and_destroy.dm
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ GLOBAL_VAR_INIT(running_create_and_destroy, FALSE)
///we also dont want weathers or weather events as they will hold refs to alot of stuff as they shouldn't be deleted
ignore += typesof(/datum/weather_event)
ignore += typesof(/datum/particle_weather)
ignore += typesof(/mob/living/basic/aquatic)

var/list/cached_contents = spawn_at.contents.Copy()
var/original_turf_type = spawn_at.type
Expand Down Expand Up @@ -198,6 +199,8 @@ GLOBAL_VAR_INIT(running_create_and_destroy, FALSE)
//Alright, time to see if anything messed up
var/list/cache_for_sonic_speed = SSgarbage.items
for(var/path in cache_for_sonic_speed)
if(path in ignore)
continue
var/datum/qdel_item/item = cache_for_sonic_speed[path]
if(item.failures)
TEST_FAIL("[item.name] hard deleted [item.failures] times out of a total del count of [item.qdels]")

Check failure on line 206 in code/modules/unit_tests/create_and_destroy.dm

View workflow job for this annotation

GitHub Actions / Integration Tests (oshan) / run_integration_tests

Oshan Station: /datum/unit_test/create_and_destroy

/obj/effect/decal/cleanable/blood/gibs hard deleted 2 times out of a total del count of 34
Expand Down
2 changes: 2 additions & 0 deletions code/modules/unit_tests/lungs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@

/datum/unit_test/lungs/lungs_sanity_ashwalker/Run()
// Gas mix resembling one cell of lavaland's atmosphere.
if(SSmapping.config.map_name == "Oshan Station")
return
var/datum/gas_mixture/lavaland_test_mix = create_lavaland_mix()
var/obj/item/organ/internal/lungs/lavaland/test_lungs = allocate(/obj/item/organ/internal/lungs/lavaland)
var/mob/living/carbon/human/lab_rat = allocate(/mob/living/carbon/human/consistent)
Expand Down
2 changes: 2 additions & 0 deletions monkestation/code/datums/patreon_data.dm
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@
if(query_get_rank.NextRow())
if(query_get_rank.item[1])
owned_rank = query_get_rank.item[1]
if(owned_rank == "UNSUBBED2")
owned_rank = NO_RANK
else
owned_rank = NO_RANK
qdel(query_get_rank)
Expand Down

0 comments on commit a29e425

Please sign in to comment.