fixed the changelog FOR REAL THIS TIME, also fixed bad coding

This commit is contained in:
TheVekter
2015-06-22 21:30:50 -05:00
parent e2da971040
commit ab4a0ade28
3 changed files with 5 additions and 7 deletions
-3
View File
@@ -64,10 +64,7 @@
if(!O.anchored)
var/mob/living/target = locate() in view(10,src)
if(!target)
return
else
O.throw_at(target, 5, 10)
return
/obj/effect/anomaly/grav/Bump(mob/A)
+4 -3
View File
@@ -51,8 +51,9 @@ In my current plan for it, 'solid' will be defined as anything with density == 1
return 0
/obj/effect/immovablerod/Bump(atom/clong)
playsound(src, 'sound/effects/bang.ogg', 50, 1)
audible_message("CLANG")
if(prob(10))
playsound(src, 'sound/effects/bang.ogg', 50, 1)
audible_message("CLANG")
if(clong && prob(25))
x = clong.x
@@ -65,7 +66,7 @@ In my current plan for it, 'solid' will be defined as anything with density == 1
else if (istype(clong, /mob))
if(istype(clong, /mob/living/carbon/human))
var/mob/living/carbon/human/H = clong
H << "The rod penetrates you!"
H.visible_message("<span class='danger'>[H.name] is penetrated by an immovable rod!</span>" , "<span class='userdanger'>The rod penetrates you!</span>" , "<span class ='danger'>You hear a CLANG!</span>")
H.adjustBruteLoss(160)
if(clong.density || prob(10))
clong.ex_act(2)
+1 -1
View File
@@ -1,8 +1,8 @@
author: Vekter
delete-after: True
changes:
- bugfix: "Finally fixed immovable rods! They will now properly bisect the station (and crit anyone unlucky enough to be in their path)."
- tweak: "Increased Meteor activity detected in the vicinity of the station. Be advised that many storms may be more violent than they once were."
- rscadd: "Gravitational anomalies will now throw items at mobs in their vicinity. Take care while scanning them."