From 3d7004af3d628125250259c48f45b98e341eceb3 Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Sun, 22 Nov 2015 14:35:37 -0500 Subject: [PATCH 1/3] HULK fixes --- code/game/objects/items/weapons/dna_injector.dm | 1 + code/modules/mob/living/carbon/human/human_movement.dm | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/code/game/objects/items/weapons/dna_injector.dm b/code/game/objects/items/weapons/dna_injector.dm index 0a91cc28708..7d5ed6bac7f 100644 --- a/code/game/objects/items/weapons/dna_injector.dm +++ b/code/game/objects/items/weapons/dna_injector.dm @@ -85,6 +85,7 @@ M.dna.SetSEValue(block,src.GetValue()) domutcheck(M, null, block!=null) uses-- + M.update_icons() spawn(0)//this prevents the collapse of space-time continuum if (user) diff --git a/code/modules/mob/living/carbon/human/human_movement.dm b/code/modules/mob/living/carbon/human/human_movement.dm index a8d0dc93bff..b286bc7f760 100644 --- a/code/modules/mob/living/carbon/human/human_movement.dm +++ b/code/modules/mob/living/carbon/human/human_movement.dm @@ -46,7 +46,9 @@ tally += 2*stance_damage //damaged/missing feet or legs is slow if(RUN in mutations) - tally = -1 + tally -= 1 + if(HULK in mutations) + tally += 1 if(status_flags & IGNORESLOWDOWN) // make sure this is always at the end so we don't have ignore slowdown getting ignored itself tally = -1 From ac38463ce61b3252dad9739c8b7520bd818f5d64 Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Sun, 22 Nov 2015 18:52:57 -0500 Subject: [PATCH 2/3] changed update_icons to update_mutations --- code/game/objects/items/weapons/dna_injector.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/weapons/dna_injector.dm b/code/game/objects/items/weapons/dna_injector.dm index 7d5ed6bac7f..6d36129773a 100644 --- a/code/game/objects/items/weapons/dna_injector.dm +++ b/code/game/objects/items/weapons/dna_injector.dm @@ -85,7 +85,7 @@ M.dna.SetSEValue(block,src.GetValue()) domutcheck(M, null, block!=null) uses-- - M.update_icons() + M.update_mutations() spawn(0)//this prevents the collapse of space-time continuum if (user) From fa84af4e22679ee08ef8032a3f4f6d8eeef5bcf7 Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Tue, 24 Nov 2015 11:44:11 -0500 Subject: [PATCH 3/3] Removes changes to RUN --- code/modules/mob/living/carbon/human/human_movement.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/human_movement.dm b/code/modules/mob/living/carbon/human/human_movement.dm index b286bc7f760..39bdd785530 100644 --- a/code/modules/mob/living/carbon/human/human_movement.dm +++ b/code/modules/mob/living/carbon/human/human_movement.dm @@ -46,7 +46,7 @@ tally += 2*stance_damage //damaged/missing feet or legs is slow if(RUN in mutations) - tally -= 1 + tally = -1 if(HULK in mutations) tally += 1 if(status_flags & IGNORESLOWDOWN) // make sure this is always at the end so we don't have ignore slowdown getting ignored itself