mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-30 15:38:02 +01:00
Adds more blacklist/whitelist areas.
This commit is contained in:
@@ -850,13 +850,14 @@ var/global/list/BUILDABLE_AREA_TYPES = list(
|
||||
/area/mine,
|
||||
// /area/surface/outside, //SC
|
||||
// /area/surface/cave, //SC
|
||||
//TETHER STUFF BELOW THIS
|
||||
/area/tether/surfacebase/outside,
|
||||
//GROUNDBASE STUFF BELOW THIS
|
||||
/area/groundbase/unexplored/outdoors,
|
||||
/area/maintenance/groundbase/level1,
|
||||
/area/submap/groundbase/wilderness,
|
||||
/area/groundbase/mining
|
||||
/area/groundbase/mining,
|
||||
/area/offmap/aerostat/surface,
|
||||
/area/tether_away/beach,
|
||||
/area/tether_away/cave,
|
||||
)
|
||||
|
||||
var/static/list/blacklisted_areas = typecacheof(list(
|
||||
@@ -870,7 +871,10 @@ var/static/list/blacklisted_areas = typecacheof(list(
|
||||
/area/groundbase/unexplored/outdoors,
|
||||
/area/maintenance/groundbase/level1,
|
||||
/area/submap/groundbase/wilderness,
|
||||
/area/groundbase/mining
|
||||
/area/groundbase/mining,
|
||||
/area/offmap/aerostat/surface,
|
||||
/area/tether_away/beach,
|
||||
/area/tether_away/cave
|
||||
))
|
||||
|
||||
var/global/list/SPECIALS = list(
|
||||
@@ -885,7 +889,12 @@ var/global/list/SPECIALS = list(
|
||||
/area/wizard_station,
|
||||
/area/prison,
|
||||
/area/holodeck,
|
||||
/area/turbolift
|
||||
/area/turbolift,
|
||||
/area/tether/elevator,
|
||||
/turf/unsimulated/wall/planetary,
|
||||
/area/submap/virgo2,
|
||||
/area/submap/event,
|
||||
/area/submap/casino_event
|
||||
// /area/derelict //commented out, all hail derelict-rebuilders!
|
||||
)
|
||||
|
||||
@@ -902,5 +911,10 @@ var/global/list/area_or_turf_fail_types = typecacheof(list(
|
||||
/area/prison,
|
||||
/area/holodeck,
|
||||
/turf/simulated/wall/elevator,
|
||||
/area/turbolift
|
||||
/area/turbolift,
|
||||
/area/tether/elevator,
|
||||
/turf/unsimulated/wall/planetary,
|
||||
/area/submap/virgo2,
|
||||
/area/submap/event,
|
||||
/area/submap/casino_event
|
||||
))
|
||||
|
||||
@@ -8,12 +8,11 @@
|
||||
|
||||
// Now that I've scared away half the people looking at this file, here's the relevant info:
|
||||
|
||||
// Banning areas: Go to /obj/item/areaeditor/proc/get_area_type and /proc/create_area and add the /area to: (area_or_turf_fail_types)
|
||||
// That will bar people from doing ANYTHING to those areas. No creating inside of them. No merging into them. Etc.
|
||||
// Banning areas: Go to global_lists_vr, jump to the BUILDABLE_AREA_TYPES and read the comments left there.
|
||||
|
||||
// Disallow creation but allow merge/expansion: Go to the same two above again.
|
||||
// Add the /area to 'blacklisted_areas' in /proc/create_area
|
||||
/area/tether/elevator
|
||||
|
||||
name = "Tether Elevator"
|
||||
|
||||
/area/tether/surfacebase/outside
|
||||
name = "Outside - Surface"
|
||||
|
||||
Reference in New Issue
Block a user