Skip to content

Commit

Permalink
Fix CI and report access
Browse files Browse the repository at this point in the history
  • Loading branch information
noelle-lavenza committed May 21, 2022
1 parent 891a6bb commit 95ba2f1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion maps/torch/datums/reports/corporate.dm
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@

/datum/computer_file/report/recipient/corp/fire/New()
..()
set_access(list(access_heads, access_nanotrasen), access_heads)
set_access(list(list(access_heads, access_nanotrasen)), access_heads)

/datum/computer_file/report/recipient/corp/fire/generate_fields()
..()
Expand Down
2 changes: 1 addition & 1 deletion maps/torch/datums/reports/deck.dm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

/datum/computer_file/report/recipient/docked/New()
..()
set_access(list(access_cargo, access_heads), access_cargo)
set_access(list(list(access_cargo, access_heads)), access_cargo)

/datum/computer_file/report/recipient/docked/generate_fields()
..()
Expand Down
4 changes: 2 additions & 2 deletions maps/torch/datums/reports/solgov.dm
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
add_field(/datum/report_field/pencode_text, "Other Notes")
add_field(/datum/report_field/signature, "Signature")
add_field(/datum/report_field/options/yes_no, "Approved")
set_access(write_access = write_access | list(access_representative, access_nanotrasen))
set_access(write_access = write_access | list(list(access_representative, access_nanotrasen)))
..()

/datum/computer_file/report/recipient/sol/crewman_incident
Expand All @@ -33,7 +33,7 @@
add_field(/datum/report_field/pencode_text, "Description of incident")
add_field(/datum/report_field/signature, "Signature")
add_field(/datum/report_field/options/yes_no, "Approved")
set_access(write_access = list(access_heads, access_solgov_crew))
set_access(write_access = list(list(access_heads, access_solgov_crew)))
..()

/datum/computer_file/report/recipient/sol/work_visa
Expand Down
2 changes: 1 addition & 1 deletion test/check-paths.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ exactly 2 "/mob text paths" '"/mob'
exactly 6 "/obj text paths" '"/obj'
exactly 8 "/turf text paths" '"/turf'
exactly 1 "world<< uses" 'world<<|world[[:space:]]<<'
exactly 92 "'in world' uses" 'in world'
exactly 93 "'in world' uses" 'in world'
exactly 1 "world.log<< uses" 'world.log<<|world.log[[:space:]]<<'
exactly 18 "<< uses" '(?<!<)<<(?!<)' -P
exactly 10 ">> uses" '>>(?!>)' -P
Expand Down

0 comments on commit 95ba2f1

Please sign in to comment.