Skip to content

Commit

Permalink
Merge branch 'master' into ui/almayer-control
Browse files Browse the repository at this point in the history
  • Loading branch information
stanalbatross committed Aug 1, 2023
2 parents ae2f0f5 + a8150de commit 6a3b4b4
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 9 deletions.
4 changes: 2 additions & 2 deletions code/game/gamemodes/colonialmarines/whiskey_outpost.dm
Original file line number Diff line number Diff line change
Expand Up @@ -664,8 +664,8 @@
/obj/item/ammo_magazine/rocket/wp)
if(2) //Smartgun supplies
spawnitems = list(
/obj/item/cell/high,
/obj/item/cell/high,
/obj/item/smartgun_battery,
/obj/item/smartgun_battery,
/obj/item/ammo_magazine/smartgun,
/obj/item/ammo_magazine/smartgun,
/obj/item/ammo_magazine/smartgun,
Expand Down
4 changes: 3 additions & 1 deletion code/modules/cm_marines/equipment/guncases.dm
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,15 @@
/obj/item/storage/box/guncase/lmg
name = "\improper M41AE2 heavy pulse rifle case"
desc = "A gun case containing the M41AE2 heavy pulse rifle. You can get additional ammunition at requisitions."
storage_slots = 3
storage_slots = 5
can_hold = list(/obj/item/weapon/gun/rifle/lmg, /obj/item/ammo_magazine/rifle/lmg)

/obj/item/storage/box/guncase/lmg/fill_preset_inventory()
new /obj/item/weapon/gun/rifle/lmg(src)
new /obj/item/ammo_magazine/rifle/lmg(src)
new /obj/item/ammo_magazine/rifle/lmg/holo_target(src)
new /obj/item/attachable/flashlight
new /obj/item/attachable/bipod

//------------
/obj/item/storage/box/guncase/m41aMK1
Expand Down
3 changes: 2 additions & 1 deletion code/modules/organs/organ_internal.dm
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,8 @@

if(organ_status >= ORGAN_BROKEN && prob(5 * delta_time))
owner.apply_effect(1, PARALYZE)
owner.make_jittery(50)
if(owner.jitteriness < 100)
owner.make_jittery(50)
to_chat(owner, SPAN_DANGER("Your body seizes up!"))

/datum/internal_organ/brain/prosthetic //used by synthetic species
Expand Down
3 changes: 2 additions & 1 deletion code/modules/surgery/brainrepair.dm
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,11 @@

var/datum/internal_organ/brain/B = target.internal_organs_by_name["brain"]
if(B)
B.damage = 0
B.heal_damage(B.damage)
target.disabilities &= ~NERVOUS
target.sdisabilities &= ~DISABILITY_DEAF
target.sdisabilities &= ~DISABILITY_MUTE
target.jitteriness = 0
target.pain.recalculate_pain()

log_interact(user, target, "[key_name(user)] finished taking bone chips out of [key_name(target)]'s brain with \the [tool], finishing [surgery].")
Expand Down
4 changes: 4 additions & 0 deletions html/changelogs/AutoChangeLog-pr-4049.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
author: "Dorodomki"
delete-after: True
changes:
- rscadd: "Adds A Bipod and Rail Flashlight to the HPR kit"
4 changes: 0 additions & 4 deletions html/changelogs/AutoChangeLog-pr-4051.yml

This file was deleted.

5 changes: 5 additions & 0 deletions html/changelogs/AutoChangeLog-pr-4061.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
author: "Morrow"
delete-after: True
changes:
- bugfix: "Fixes brain damage"
- qol: "Jittering from brain damage is now capped"
4 changes: 4 additions & 0 deletions html/changelogs/AutoChangeLog-pr-4069.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
author: "Huffie56"
delete-after: True
changes:
- bugfix: "Care package for SG on WO will now spawn with the proper batteries for them."
3 changes: 3 additions & 0 deletions html/changelogs/archive/2023-08.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
2023-08-01:
Drathek:
- bugfix: Fixed hung mobs merging with weeds

0 comments on commit 6a3b4b4

Please sign in to comment.