Adds Nar-Sie Hologram and Backup Error Screen to AI

Allows the AI the ability to use the holographic Nar-Sie sprite from the
selection. Also adds in a backup error screen for the AI in the case the
icon text is incorrect when the variable is changed.
This commit is contained in:
Twinmold
2016-06-03 04:18:27 -05:00
parent 4d7aab53a2
commit 8e369294d8
2 changed files with 4 additions and 1 deletions
+4 -1
View File
@@ -814,7 +814,8 @@ var/list/ai_verbs_default = list(
var/icon_list[] = list(
"default",
"floating face",
"xeno queen"
"xeno queen",
"eldritch"
)
input = input("Please select a hologram:") as null|anything in icon_list
if(input)
@@ -826,6 +827,8 @@ var/list/ai_verbs_default = list(
holo_icon = getHologramIcon(icon('icons/mob/AI.dmi',"holo2"))
if("xeno queen")
holo_icon = getHologramIcon(icon('icons/mob/AI.dmi',"holo3"))
if("eldritch")
holo_icon = getHologramIcon(icon('icons/mob/AI.dmi',"holo4"))
return
/mob/living/silicon/ai/proc/corereturn()