Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…into Pods
  • Loading branch information
LC4492 committed Nov 29, 2023
2 parents 9365452 + 277440d commit e07b0d1
Show file tree
Hide file tree
Showing 9 changed files with 961 additions and 549 deletions.
4 changes: 4 additions & 0 deletions code/game/area/kutjevo.dm
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,10 @@
name = "Kutjevo - Power Station River"
icon_state = "lz_river"

/area/kutjevo/exterior/spring
name = "Kutjevo - Southern Spring"
icon_state = "lz_river"

/area/kutjevo/exterior/scrubland
name = "Kutjevo - Scrubland"
icon_state = "scrubland"
Expand Down
9 changes: 7 additions & 2 deletions code/game/objects/structures/crates_lockers/closets.dm
Original file line number Diff line number Diff line change
Expand Up @@ -158,10 +158,15 @@


/obj/structure/closet/proc/take_damage(damage)
if(health <= 0)
return

health = max(health - damage, 0)
if(health <= 0)
for(var/atom/movable/A as anything in src)
A.forceMove(src.loc)
for(var/atom/movable/movable as anything in src)
if(!loc)
break
movable.forceMove(loc)
playsound(loc, 'sound/effects/meteorimpact.ogg', 25, 1)
qdel(src)

Expand Down
4 changes: 0 additions & 4 deletions html/changelogs/AutoChangeLog-pr-5035.yml

This file was deleted.

4 changes: 4 additions & 0 deletions html/changelogs/AutoChangeLog-pr-5039.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
author: "HeresKozmos"
delete-after: True
changes:
- mapadd: "added a new spring area to kutjevo's south caves"
4 changes: 4 additions & 0 deletions html/changelogs/AutoChangeLog-pr-5050.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
author: "SabreML"
delete-after: True
changes:
- bugfix: "Fixed a few space tiles under a window in Kutjevo Refinery."
3 changes: 3 additions & 0 deletions html/changelogs/archive/2023-11.yml
Original file line number Diff line number Diff line change
Expand Up @@ -402,3 +402,6 @@
than if lying down.
stalkerino:
- rscadd: readds skull facepaint and skull balaclava (blue and black)
2023-11-29:
realforest2001:
- rscdel: Whiskey Outpost no longer rolls pred rounds naturally.
Loading

0 comments on commit e07b0d1

Please sign in to comment.