- Paralysis Penlight now 3 telecrystals.
- Added some (commented out) code that CAN fix a Mind Swap bug but I have no way to test it (hence it's commented out).
- Fixed some more R&D bugs.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1065 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
morikou@gmail.com
2011-02-18 18:16:33 +00:00
parent 9c3694b5a6
commit 28ee8bec1b
3 changed files with 9 additions and 4 deletions

View File

@@ -681,6 +681,11 @@
spawn(500)
H << "The mind transfer has robbed you of a spell."
/* //This code SHOULD work to prevent Mind Swap spam since the spell transfer code above instantly resets it.
//I can't test this code because I can't test mind stuff on my own :x -- Darem.
if(hascall(H, /mob/proc/swap))
H.verbs -= /mob/proc/swap
*/
G.client.mob = U
U.mind = G.mind
if(U.mind.special_verbs.len)//Basic fix to swap verbs for any mob if needed.

View File

@@ -40,7 +40,7 @@
src.menu_message += "<A href='byond://?src=\ref[src];buy_item=emag'>Electromagnet Card</A> (3)<BR>"
src.menu_message += "<A href='byond://?src=\ref[src];buy_item=imp_freedom'>Freedom Implant (with injector)</A> (3)<BR>"
src.menu_message += "<A href='byond://?src=\ref[src];buy_item=sleepypen'>Sleepy Pen</A> (5)<BR>"
src.menu_message += "<A href='byond://?src=\ref[src];buy_item=paralysispen'>Paralysis Pen</A> (2)<BR>"
src.menu_message += "<A href='byond://?src=\ref[src];buy_item=paralysispen'>Paralysis Pen</A> (3)<BR>"
src.menu_message += "<A href='byond://?src=\ref[src];buy_item=cloak'>Cloaking Device</A> (4)<BR>"
src.menu_message += "<A href='byond://?src=\ref[src];buy_item=sword'>Energy Sword</A> (4)<BR>"
src.menu_message += "<A href='byond://?src=\ref[src];buy_item=bomb'>Plastic Explosives</A> (4)<BR>"
@@ -115,8 +115,8 @@
src.uses -= 5
new /obj/item/weapon/pen/sleepypen(get_turf(src.hostpda))
if("paralysispen")
if (src.uses >= 2)
src.uses -= 2
if (src.uses >= 3)
src.uses -= 3
new /obj/item/device/flashlight/pen/paralysis(get_turf(src.hostpda))
if("projector")
if (src.uses >= 4)

View File

@@ -199,7 +199,7 @@ datum
req_tech = list("programming" = 2)
build_type = IMPRINTER
materials = list("$glass" = 2000, "acid" = 20)
build_path = "/obj/machinery/power/monitor"
build_path = "/obj/item/weapon/circuitboard/powermonitor"
prisonmanage
name = "Circuit Design (Prisoner Management Console)"