mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
pAI suicide verb renamed to avoid conflicts with existing suicide verb - should function for non-admins now.
Admins playing pAIs should no longer have their pAI interface appear every time they send or receive an Admin-PM. pAIs are now affected by EMP bursts. pAIs hit with a burst will be silenced (no speech or PDA messaging) for two minutes and may have their directives or master modified. A sufficiently powerful EMP burst will have a 20% chance of killing a pAI. The Player Panel now lists pAIs below humans. Added a new admin command : Make pAI. Allows admins to manually spawn a specific player as a pAI at a given location. PDAs and pAI devices pass emp_act()s into their contents list, largely to allow pAIs contained within to respond properly to EMP bursts. pAI now understand brain/MMI speech without the aid of a Universal Translator. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1656 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -1444,12 +1444,12 @@ var/showadminmessages = 1
|
||||
dat += "<tr><td>[M.name]</td>"
|
||||
if(istype(M, /mob/living/silicon/ai))
|
||||
dat += "<td>AI</td>"
|
||||
if(istype(M, /mob/living/silicon/pai))
|
||||
dat += "<td>pAI</td>"
|
||||
if(istype(M, /mob/living/silicon/robot))
|
||||
dat += "<td>Cyborg</td>"
|
||||
if(istype(M, /mob/living/carbon/human))
|
||||
dat += "<td>[M.real_name]</td>"
|
||||
if(istype(M, /mob/living/silicon/pai))
|
||||
dat += "<td>pAI</td>"
|
||||
if(istype(M, /mob/new_player))
|
||||
dat += "<td>New Player</td>"
|
||||
if(istype(M, /mob/dead/observer))
|
||||
@@ -1483,12 +1483,12 @@ var/showadminmessages = 1
|
||||
dat += "<tr><td>[M.name]</td>"
|
||||
if(istype(M, /mob/living/silicon/ai))
|
||||
dat += "<td>AI</td>"
|
||||
if(istype(M, /mob/living/silicon/pai))
|
||||
dat += "<td>pAI</td>"
|
||||
if(istype(M, /mob/living/silicon/robot))
|
||||
dat += "<td>Cyborg</td>"
|
||||
if(istype(M, /mob/living/carbon/human))
|
||||
dat += "<td>[M.real_name]</td>"
|
||||
if(istype(M, /mob/living/silicon/pai))
|
||||
dat += "<td>pAI</td>"
|
||||
if(istype(M, /mob/new_player))
|
||||
dat += "<td>New Player</td>"
|
||||
if(istype(M, /mob/dead/observer))
|
||||
|
||||
Reference in New Issue
Block a user