Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
realforest2001 committed Mar 3, 2024
1 parent 8a81f22 commit c5d4dc3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions code/game/machinery/ARES/ARES_interface.dm
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,8 @@
// -- Delete Button -- //
if("delete_record")
var/datum/ares_record/record = locate(params["record"])
if(!istype(record))
return FALSE
if(record.record_name == ARES_RECORD_DELETED)
return FALSE
var/datum/ares_record/deletion/new_delete = new
Expand Down
6 changes: 3 additions & 3 deletions code/game/machinery/ARES/ARES_interface_admin.dm
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@
data["evac_status"] = SShijack.evac_status
data["worldtime"] = world.time

data["access_log"] = list(datacore.interface_access_list)
data["apollo_log"] = list(datacore.apollo_log)
data["access_log"] = datacore.interface_access_list
data["apollo_log"] = datacore.apollo_log

data["deleted_conversation"] = list(admin_interface.deleted_1to1)
data["deleted_conversation"] = admin_interface.deleted_1to1

data["distresstime"] = datacore.ares_distress_cooldown
data["distresstimelock"] = DISTRESS_TIME_LOCK
Expand Down

0 comments on commit c5d4dc3

Please sign in to comment.