Wealth Beyond Measure - The Merchants' Guild Ship (#16295)

* hegemony merchant ship

* guild mantles

* armory weapons + changelogs

* changelog fix

* cl fix 2

* turf fix

* piping and access fixes
This commit is contained in:
RustingWithYou
2023-05-19 09:58:04 +12:00
committed by GitHub
parent aef7306704
commit c1bc721a3b
10 changed files with 30021 additions and 1 deletions

View File

@@ -180,6 +180,9 @@
/obj/item/modular_computer/console/preset/merchant/nka
_app_preset_type = /datum/modular_computer_app_presets/merchant/nka
/obj/item/modular_computer/console/preset/merchant/guild
_app_preset_type = /datum/modular_computer_app_presets/merchant/guild
// AI
/obj/item/modular_computer/console/preset/ai
_app_preset_type = /datum/modular_computer_app_presets/ai

View File

@@ -646,6 +646,16 @@
)
return _prg_list
/datum/modular_computer_app_presets/merchant/guild/return_install_programs(obj/item/modular_computer/comp)
var/list/_prg_list = list(
new /datum/computer_file/program/filemanager(comp),
new /datum/computer_file/program/manifest(comp),
new /datum/computer_file/program/newsbrowser(comp),
new /datum/computer_file/program/chat_client(comp),
new /datum/computer_file/program/merchant/guild(comp)
)
return _prg_list
/datum/modular_computer_app_presets/ai
name = "ai"
display_name = "AI"