diff --git a/_maps/pahrump-everything.json b/_maps/pahrump-everything.json index b536da84b5a..d9ed623f14f 100644 --- a/_maps/pahrump-everything.json +++ b/_maps/pahrump-everything.json @@ -35,8 +35,8 @@ "Linkage" : "Cross", "Name": "Lower Yuma", "Force X": 1, - "Force Y": 1, - "Force Z": -1 + "Force Y": 2, + "Force Z": 0 }, { @@ -50,7 +50,7 @@ "Force West": 1, "Name": "New Boston", "Force X": 1, - "Force Y": 1, + "Force Y": 2, "Force Z": 1 }, @@ -63,7 +63,7 @@ "Above": true, "Name": "New Boston - Upper", "Force X": 1, - "Force Y": 1, + "Force Y": 2, "Force Z": 2 } ], diff --git a/code/modules/mapping/map_config.dm b/code/modules/mapping/map_config.dm index 9963f03f180..3289631e929 100644 --- a/code/modules/mapping/map_config.dm +++ b/code/modules/mapping/map_config.dm @@ -19,7 +19,7 @@ // Config actually from the JSON - should default to Box var/map_name = "Yuma" var/map_path = "map_files/Nash_and_Texarkana" - var/map_file = list("Dungeons.dmm", "Texarkana_underground.dmm", "Nash_and_Texarkana.dmm", "Nash_and_Texarkana-Upper.dmm", "Nash_and_Texarkana-Upper-2.dmm", "Redwater.dmm", "Redwater-Upper.dmm", "Ashdown.dmm", "Garland-City.dmm", "Newboston.dmm", "Newboston-Upper.dmm") + var/map_file = list("Dungeons.dmm", "Texarkana_underground.dmm", "Newboston.dmm", "Newboston-Upper.dmm") var/list/added_jobs = list() //Overrides the "none" faction using job name var/list/removed_jobs = list() //Removes the "none" faction using job name - can also use #all# (case sensitive) @@ -39,94 +39,10 @@ ZTRAIT_DOWN = -1, ZTRAIT_NOPARALLAX = 1, ZTRAIT_LINKAGE = CROSSLINKED, - Z_FORCE_X = 2, + Z_FORCE_X = 1, Z_FORCE_Y = 2, Z_FORCE_Z = 0 ), - list( - ZTRAIT_GRAVITY = 1, - ZTRAIT_BASETURF = /turf/open/indestructible/ground/inside/mountain, - ZTRAIT_STATION = 1, - ZTRAIT_UP = 1, - ZTRAIT_DOWN = -1, - ZTRAIT_NOPARALLAX = 1, - ZTRAIT_LINKAGE = CROSSLINKED, - Z_FORCE_X = 2, - Z_FORCE_Y = 2, - Z_FORCE_Z = 1, - ), - list( - ZTRAIT_GRAVITY = 1, - ZTRAIT_BASETURF = /turf/open/transparent/openspace, - ZTRAIT_UP = 1, - ZTRAIT_DOWN = -1, - ZTRAIT_NOPARALLAX = 1, - ZTRAIT_LINKAGE = CROSSLINKED, - Z_FORCE_X = 2, - Z_FORCE_Y = 2, - Z_FORCE_Z = 2, - ), - list( - ZTRAIT_GRAVITY = 1, - ZTRAIT_BASETURF = /turf/open/transparent/openspace, - ZTRAIT_DOWN = -1, - ZTRAIT_NOPARALLAX = 1, - ZTRAIT_LINKAGE = CROSSLINKED, - ZTRAIT_ABOVE = 1, - Z_FORCE_X = 2, - Z_FORCE_Y = 2, - Z_FORCE_Z = 3 - ), - list( - ZTRAIT_GRAVITY = 1, - ZTRAIT_BASETURF = /turf/open/indestructible/ground/inside/mountain, - ZTRAIT_STATION = 1, - ZTRAIT_UP = 1, - ZTRAIT_DOWN = -1, - ZTRAIT_NOPARALLAX = 1, - ZTRAIT_LINKAGE = CROSSLINKED, - Z_FORCE_SOUTH = 1, - Z_FORCE_X = 2, - Z_FORCE_Y = 1, - Z_FORCE_Z = 1 - ), - list( - ZTRAIT_GRAVITY = 1, - ZTRAIT_BASETURF = /turf/open/transparent/openspace, - ZTRAIT_UP = 1, - ZTRAIT_DOWN = -1, - ZTRAIT_NOPARALLAX = 1, - ZTRAIT_LINKAGE = CROSSLINKED, - Z_FORCE_X = 2, - Z_FORCE_Y = 1, - Z_FORCE_Z = 2 - ), - list( - ZTRAIT_GRAVITY = 1, - ZTRAIT_BASETURF = /turf/open/indestructible/ground/inside/mountain, - ZTRAIT_STATION = 1, - ZTRAIT_UP = 1, - ZTRAIT_DOWN = -1, - ZTRAIT_NOPARALLAX = 1, - ZTRAIT_LINKAGE = CROSSLINKED, - Z_FORCE_NORTH = 1, - Z_FORCE_X = 2, - Z_FORCE_Y = 3, - Z_FORCE_Z = 1 - ), - list( - ZTRAIT_GRAVITY = 1, - ZTRAIT_BASETURF = /turf/open/indestructible/ground/inside/mountain, - ZTRAIT_STATION = 1, - ZTRAIT_UP = 1, - ZTRAIT_DOWN = -1, - ZTRAIT_NOPARALLAX = 1, - ZTRAIT_LINKAGE = CROSSLINKED, - Z_FORCE_EAST = 1, - Z_FORCE_X = 3, - Z_FORCE_Y = 2, - Z_FORCE_Z = 1 - ), list( ZTRAIT_GRAVITY = 1, ZTRAIT_BASETURF = /turf/open/indestructible/ground/inside/mountain,