Skip to content

Commit

Permalink
ε:
Browse files Browse the repository at this point in the history
  • Loading branch information
Skies-Of-Blue committed Jan 26, 2024
1 parent dd5d553 commit 936ecaa
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions code/modules/mining/lavaland/necropolis_chests.dm
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
desc = "It's watching you suspiciously."

/obj/structure/closet/crate/necropolis/tendril/PopulateContents()
var/loot = rand(1,30)
var/loot = rand(1,29)
switch(loot)
if(1)
new /obj/item/shared_storage/red(src)
Expand Down Expand Up @@ -84,15 +84,13 @@
new /obj/item/clothing/suit/armor/ascetic(src)
if(29)
new /obj/item/kitchen/knife/envy(src)
if(30)
new /mob/living/simple_animal/hostile/poison/bees(src)

/obj/structure/closet/crate/necropolis/tendril/greater
desc = "It's watching you wearily. It seems terribly bloated."

/obj/structure/closet/crate/necropolis/tendril/greater/PopulateContents()
for(var/i in 1 to 3)
var/loot = rand(1,30)
var/loot = rand(1,29)
switch(loot)
if(1)
new /obj/item/shared_storage/red(src)
Expand Down Expand Up @@ -163,10 +161,6 @@
new /obj/item/clothing/suit/armor/ascetic(src)
if(29)
new /obj/item/kitchen/knife/envy(src)
if(30)
new /mob/living/simple_animal/hostile/poison/bees/toxin(src)
// :3c

//KA modkit design discs
/obj/item/disk/design_disk/modkit_disc
name = "KA Mod Disk"
Expand Down

0 comments on commit 936ecaa

Please sign in to comment.