Skip to content

Commit

Permalink
ARES and admin logs
Browse files Browse the repository at this point in the history
  • Loading branch information
realforest2001 committed Apr 5, 2024
1 parent 5bc9bc1 commit 3669ae8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions code/game/supplyshuttle.dm
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,8 @@ GLOBAL_DATUM_INIT(supply_controller, /datum/controller/supply, new())
var/obj/structure/droppod/supply/pod = new(null, C)
C.forceMove(pod)
pod.launch(T)
log_ares_requisition("Supply Drop", "Launch [c.name] to X[x_supply], Y[y_supply].", usr.real_name)

Check failure on line 331 in code/game/supplyshuttle.dm

View workflow job for this annotation

GitHub Actions / Run Linters

undefined var: "c"

Check warning on line 331 in code/game/supplyshuttle.dm

View workflow job for this annotation

GitHub Actions / Run Linters

field access requires static type: "name"
log_game("[key_name(usr)] launched supply drop '[c.name]' to X[x_coord], Y[y_coord].")

Check failure on line 332 in code/game/supplyshuttle.dm

View workflow job for this annotation

GitHub Actions / Run Linters

undefined var: "c"

Check warning on line 332 in code/game/supplyshuttle.dm

View workflow job for this annotation

GitHub Actions / Run Linters

field access requires static type: "name"
visible_message("[icon2html(src, viewers(src))] [SPAN_BOLDNOTICE("'[C.name]' supply drop launched! Another launch will be available in five minutes.")]")

//A limited version of the above console
Expand Down
2 changes: 2 additions & 0 deletions code/modules/cm_marines/overwatch.dm
Original file line number Diff line number Diff line change
Expand Up @@ -854,6 +854,8 @@
playsound(C.loc,'sound/effects/bamf.ogg', 50, 1) //Ehh
var/obj/structure/droppod/supply/pod = new(null, C)
pod.launch(T)
log_ares_requisition("Supply Drop", "Launch [c.name] to X[x_supply], Y[y_supply].", usr.real_name)

Check failure on line 857 in code/modules/cm_marines/overwatch.dm

View workflow job for this annotation

GitHub Actions / Run Linters

undefined var: "c"

Check warning on line 857 in code/modules/cm_marines/overwatch.dm

View workflow job for this annotation

GitHub Actions / Run Linters

field access requires static type: "name"
log_game("[key_name(usr)] launched supply drop '[c.name]' to X[x_coord], Y[y_coord].")

Check failure on line 858 in code/modules/cm_marines/overwatch.dm

View workflow job for this annotation

GitHub Actions / Run Linters

undefined var: "c"

Check warning on line 858 in code/modules/cm_marines/overwatch.dm

View workflow job for this annotation

GitHub Actions / Run Linters

field access requires static type: "name"
visible_message("[icon2html(src, viewers(src))] [SPAN_BOLDNOTICE("'[C.name]' supply drop launched! Another launch will be available in five minutes.")]")
busy = FALSE

Expand Down

0 comments on commit 3669ae8

Please sign in to comment.