Various pAI Fixes (#18222)

* Change various PAI abilities from proc to verb, init their verbs on creation

* Provide exit button on notFound and missingExport page

* Prevent programs with no ID from populating. Will still show in services. Things like pAI Flashlight

* allows pAIs to use PDAs they are inserted into

* prevent RTE for admin created pAIs

* adds error message when trying to download incompatible software

* fixes not being able to open pAI computer UIs if the client is closed with the UIs open

* changelog

* test fix?

* Revert "Provide exit button on notFound and missingExport page"

This reverts commit 77168da050.

* changelog change

* to_chat

* don't code 30s after waking up
This commit is contained in:
AlaunusLux
2024-01-19 11:33:21 +00:00
committed by GitHub
parent 7007c46389
commit 8336549284
13 changed files with 83 additions and 24 deletions
+1 -1
View File
@@ -130,7 +130,7 @@
return 1
/obj/item/device/paicard/proc/ID_readout()
if (pai.id_card.registered_name)
if (pai.id_card && pai.id_card.registered_name)
return SPAN_NOTICE("Identity of owner: [pai.id_card.registered_name] registered.")
else
return SPAN_WARNING("No ID card registered! Please scan your ID to share access.")