NT Frontier can read files from data disks (#84189)

## About The Pull Request

Made the NT Frontier app look for valid experiment files not only on the
local file system, but also on the data disk.

## Why It's Good For The Game

Less clicks.

## Changelog

🆑
qol: NT Frontier app now allows to select experiments from inserted data
disks
/🆑
This commit is contained in:
Andrew
2024-06-24 14:04:50 -07:00
committed by GitHub
parent a30a4fef82
commit 47d0b4b70d
3 changed files with 11 additions and 5 deletions
@@ -962,6 +962,12 @@
update_appearance(UPDATE_ICON)
return TRUE
/// Get all stored files, including external disk files optionaly
/obj/item/modular_computer/proc/get_files(include_disk_files = FALSE)
if(!include_disk_files || !inserted_disk)
return stored_files
return stored_files + inserted_disk.stored_files
/**
* Debug ModPC
* Used to spawn all programs for Create and Destroy unit test.