Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit f2b874a

Browse files
committed
fixed
1 parent 65e52ea commit f2b874a

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

yogstation/code/datums/mapgen/JungleGen.dm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
),
2929

3030
BIOME_TOXIC = list(
31-
LOW_HUMIDITY = /datum/biome/jungleland/toxic_pit,
31+
LOW_HUMIDITY = /datum/biome/jungleland/tar_wastes,
3232
MED_HUMIDITY = /datum/biome/jungleland/toxic_pit,
3333
HIGH_HUMIDITY = /datum/biome/jungleland/jungle
3434
)
@@ -253,7 +253,7 @@
253253
var/toxic_string = rustg_dbp_generate("[toxic_seed]","60","75","[world.maxx]","-0.05","1.1")
254254
var/list/humid_strings = list()
255255
humid_strings[HIGH_HUMIDITY] = rustg_dbp_generate("[humid_seed]","60","75","[world.maxx]","-0.1","1.1")
256-
humid_strings[MED_HUMIDITY] = rustg_dbp_generate("[humid_seed]","60","75","[world.maxx]","-0.3","-0.1")
256+
humid_strings[MED_HUMIDITY] = rustg_dbp_generate("[humid_seed]","60","75","[world.maxx]","-0.35","-0.1")
257257

258258
for(var/t in turfs) //Go through all the turfs and generate them
259259
var/turf/gen_turf = t

yogstation/code/datums/ruins/jungle.dm

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,18 @@
6969
suffix = "tar_enchant.dmm"
7070
cost = 5
7171

72+
/**
73+
* Megafauna
74+
*/
75+
/datum/map_template/ruin/jungle/all/tar_king_phylactery
76+
name = "Tar King's Phylactery"
77+
id = "jungle-tar-king"
78+
description = "In this place lies the core of this world's cancer. \
79+
Resting deep within the obsidian, sealed under an altar untouched by time, it awaits the day it will finally take form."
80+
suffix = "jungleland_tar_king.dmm"
81+
always_place = TRUE
82+
cost = 0
83+
7284
////////////////////////////////////////////////////////////////////////////////////
7385
//-------------------------------Jungle biome-------------------------------------//
7486
////////////////////////////////////////////////////////////////////////////////////
@@ -280,15 +292,3 @@
280292
suffix = "jungleland_barren_nest.dmm"
281293
allow_duplicates = TRUE
282294
always_place = TRUE
283-
284-
/**
285-
* Megafauna
286-
*/
287-
/datum/map_template/ruin/jungle/tar/tar_king_phylactery
288-
name = "Tar King's Phylactery"
289-
id = "jungle-tar-king"
290-
description = "In this place lies the core of this world's cancer. \
291-
Resting deep within the obsidian, sealed under an altar untouched by time, it awaits the day it will finally take form."
292-
suffix = "jungleland_tar_king.dmm"
293-
always_place = TRUE
294-
cost = 0

0 commit comments

Comments
 (0)