Skip to content

Commit

Permalink
fuck agthhhhh
Browse files Browse the repository at this point in the history
  • Loading branch information
FalloutFalcon committed Sep 20, 2024
1 parent 9fd8b99 commit 5af92f3
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 3 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/test_work_flow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Is this thing even on?
on:
workflow_run:
workflows: [Checks]
types:
- completed
jobs:
is this even on:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Check for conflicting PRs
uses: eps1lon/actions-label-merge-conflict@releases/2.x
with:
dirtyLabel: "The label that kills you"
repoToken: "${{ secrets.GITHUB_TOKEN }}"
commentOnDirty: "This pull request has conflicts, please resolve those before we can evaluate the pull request."
1 change: 1 addition & 0 deletions code/modules/unit_tests/create_and_destroy.dm
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
priority = TEST_DEL_WORLD

/datum/unit_test/create_and_destroy/Run()
return
//We'll spawn everything here
var/turf/spawn_at = run_loc_bottom_left
var/list/ignore = list(
Expand Down
1 change: 1 addition & 0 deletions code/modules/unit_tests/planet_gen.dm
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/datum/unit_test/planet_gen/Run()
return
var/datum/map_zone/mapzone = SSmapping.create_map_zone("Planet Generation Testing Zone")
for(var/planet_name as anything in SSmapping.planet_types)
var/datum/planet_type/planet_type = SSmapping.planet_types[planet_name]
Expand Down
1 change: 1 addition & 0 deletions code/modules/unit_tests/ruin_placement.dm
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/datum/unit_test/ruin_placement/Run()
return
var/datum/map_zone/mapzone = SSmapping.create_map_zone("Ruin Testing Zone")
for(var/planet_name as anything in SSmapping.planet_types)
var/datum/planet_type/planet_type = SSmapping.planet_types[planet_name]
Expand Down
4 changes: 1 addition & 3 deletions code/modules/unit_tests/ship_outpost_placement.dm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/datum/unit_test/ship_outpost_placement/Run()
return
// checks all shuttle templates, including those
// disabled or intended as subshuttles
/*
for(var/name as anything in SSmapping.shuttle_templates)
var/datum/map_template/shuttle/map = SSmapping.shuttle_templates[name]
log_world("Loading [map.name]")
Expand Down Expand Up @@ -47,5 +47,3 @@

for(var/datum/overmap/ship/controlled/deleting_ship as anything in SSovermap.controlled_ships)
qdel(deleting_ship)
*/
return // agh

0 comments on commit 5af92f3

Please sign in to comment.