mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-19 02:54:41 +01:00
Minor changes:
- THE HULK CAN BREAK THESSSEE... CUFFSS... NAAAAAAUURRRRRRRRRGHHHHHHHHHHHHHHHH!!!!!!
- Tables are no longer effected by magnitis. Because it's damn stupid.
git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1840 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -1406,6 +1406,7 @@ Total SMES charging rate should not exceed total power generation rate, or an ov
|
||||
name = "wooden table parts"
|
||||
desc = "Keep away from fire."
|
||||
icon_state = "wood_tableparts"
|
||||
flags = null
|
||||
|
||||
/obj/item/weapon/tank
|
||||
name = "tank"
|
||||
|
||||
@@ -26,6 +26,10 @@ TABLE AND RACK OBJECT INTERATIONS
|
||||
/obj/table/blob_act()
|
||||
|
||||
if(prob(75))
|
||||
if(istype(src, /obj/table/woodentable))
|
||||
new /obj/item/weapon/table_parts/wood( src.loc )
|
||||
del(src)
|
||||
|
||||
new /obj/item/weapon/table_parts( src.loc )
|
||||
del(src)
|
||||
|
||||
|
||||
@@ -935,7 +935,7 @@ It's fairly easy to fix if dealing with single letters but not so much with comp
|
||||
if(usr:handcuffed && usr:canmove && (usr.last_special <= world.time))
|
||||
usr.next_move = world.time + 100
|
||||
usr.last_special = world.time + 100
|
||||
if(isalienadult(usr))//Don't want to do a lot of logic gating here.
|
||||
if(isalienadult(usr) || usr.mutations & HULK)//Don't want to do a lot of logic gating here.
|
||||
usr << "\green You attempt to break your handcuffs. (This will take around 5 seconds and you need to stand still)"
|
||||
for(var/mob/O in viewers(usr))
|
||||
O.show_message(text("\red <B>[] is trying to break the handcuffs!</B>", usr), 1)
|
||||
|
||||
Reference in New Issue
Block a user