Skip to content

Commit

Permalink
Merge branch 'master' into cosmetics
Browse files Browse the repository at this point in the history
  • Loading branch information
K4rlox authored Mar 8, 2024
2 parents 1b59efb + 03d8a7e commit c9b023c
Show file tree
Hide file tree
Showing 68 changed files with 541,762 additions and 153,505 deletions.
9,502 changes: 5,712 additions & 3,790 deletions _maps/map_files/Pahrump/Dungeons.dmm

Large diffs are not rendered by default.

35,837 changes: 13,667 additions & 22,170 deletions _maps/map_files/Pahrump/Pahrump-Above-3.dmm

Large diffs are not rendered by default.

57,705 changes: 24,610 additions & 33,095 deletions _maps/map_files/Pahrump/Pahrump-Surface-2.dmm

Large diffs are not rendered by default.

19,115 changes: 9,667 additions & 9,448 deletions _maps/map_files/Pahrump/Pahrump-Underground-1.dmm

Large diffs are not rendered by default.

84,686 changes: 84,686 additions & 0 deletions _maps/map_files/Pahrump/old/Dungeons-old.dmm

Large diffs are not rendered by default.

163,880 changes: 79,194 additions & 84,686 deletions _maps/map_files/Pahrump/old/Dungeons.dmm

Large diffs are not rendered by default.

88,539 changes: 88,539 additions & 0 deletions _maps/map_files/Pahrump/old/Pahrump-Above-3.dmm

Large diffs are not rendered by default.

133,475 changes: 133,475 additions & 0 deletions _maps/map_files/Pahrump/old/Pahrump-Surface-2.dmm

Large diffs are not rendered by default.

100,591 changes: 100,591 additions & 0 deletions _maps/map_files/Pahrump/old/Pahrump-Underground-1.dmm

Large diffs are not rendered by default.

23 changes: 8 additions & 15 deletions _maps/map_files/generic/CentCom.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -9847,13 +9847,6 @@
/obj/effect/turf_decal,
/turf/open/floor/plasteel,
/area/centcom/supplypod/loading/one)
"Vy" = (
/obj/machinery/door/airlock/centcom{
name = "CentCom Supply";
req_access_txt = "106"
},
/turf/open/floor/plasteel/dark,
/area/tdome/tdomeobserve)
"VD" = (
/obj/effect/landmark/thunderdome/two,
/turf/open/floor/plasteel,
Expand Down Expand Up @@ -27502,15 +27495,15 @@ ix
ix
ix
ix
Vy
VT
ix
ix
ix
ix
ix
ix
ix
Vy
VT
ix
ix
ix
Expand Down Expand Up @@ -27763,14 +27756,14 @@ IM
Tt
iE
iE
iK
iE
iE
iE
JX
IM
Tt
iE
iK
iE
iE
VT
Ut
Expand Down Expand Up @@ -28020,14 +28013,14 @@ xY
Tt
iE
iE
iL
iE
iE
iE
JX
xY
Tt
iE
iL
iE
iE
VT
Ut
Expand Down Expand Up @@ -28273,15 +28266,15 @@ ix
ix
ix
ix
Vy
VT
ix
ix
ix
ix
ix
ix
ix
Vy
VT
ix
ix
ix
Expand Down
3 changes: 3 additions & 0 deletions code/__DEFINES/construction.dm
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,9 @@
#define CAT_MISCCLOTHING "Misc Clothing"
#define CAT_DRINK "Drinks"
#define CAT_EXPLOSIVE "Explosives"
#define CAT_CARPARTS "Vehicle Equipment"
#define CAT_CARPART "Vehicle parts"
#define CAT_CAREQUIP "Vehicle equipment"

#define RCD_FLOORWALL 1
#define RCD_AIRLOCK 2
Expand Down
7 changes: 4 additions & 3 deletions code/__DEFINES/subsystems.dm
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,10 @@
// The numbers just define the ordering, they are meaningless otherwise.

#define INIT_ORDER_PROFILER 100
#define INIT_ORDER_FAIL2TOPIC 99
#define INIT_ORDER_TITLE 98
#define INIT_ORDER_GARBAGE 95
#define INIT_ORDER_FAIL2TOPIC 98
#define INIT_ORDER_TITLE 97
#define INIT_ORDER_GARBAGE 96
#define INIT_ORDER_BCCM 95
#define INIT_ORDER_DBCORE 94
#define INIT_ORDER_STATPANELS 93
#define INIT_ORDER_BLACKBOX 92
Expand Down
1 change: 1 addition & 0 deletions code/__DEFINES/traits.dm
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,7 @@
#define ANTI_DROP_IMPLANT_TRAIT "anti-drop-implant"
#define MARTIAL_ARTIST_TRAIT "martial_artist"
#define BERSERKER_TRAIT "berserker"
#define WRESTLING_TRAIT "wrestling"
#define SLEEPING_CARP_TRAIT "sleeping_carp"
#define RISING_BASS_TRAIT "rising_bass"
#define ABDUCTOR_ANTAGONIST "abductor-antagonist"
Expand Down
18 changes: 18 additions & 0 deletions code/__HELPERS/text.dm
Original file line number Diff line number Diff line change
Expand Up @@ -826,3 +826,21 @@ GLOBAL_LIST_INIT(hex_muted3, list("0","2"))
if(prob(15))
corrupted_text += pick(corruption_options)
return corrupted_text


/proc/sql_sanitize_text(text)
text = replacetext(text, "'", "''")
text = replacetext(text, ";", "")
text = replacetext(text, "&", "")
return text

/proc/new_sql_sanitize_text(text)
text = replacetext(text, "'", "")
text = replacetext(text, ";", "")
text = replacetext(text, "&", "")
text = replacetext(text, "`", "")
return text

/proc/remove_all_spaces(text)
text = replacetext(text, " ", "")
return text
2 changes: 1 addition & 1 deletion code/_onclick/adjacent.dm
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
/obj/item/Adjacent(atom/neighbor, atom/target, atom/movable/mover, recurse = 1)
if(neighbor == loc)
return 1
if(isitem(loc))
if(isitem(loc) || istype(loc, /obj/mecha))
if(recurse > 0)
for(var/obj/item/item_loc as anything in get_locs())
if(item_loc.Adjacent(neighbor, target, mover, recurse - 1))
Expand Down
4 changes: 3 additions & 1 deletion code/controllers/configuration/configuration.dm
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
var/list/mode_names
var/list/mode_reports
var/list/mode_false_report_weight

var/bccm = FALSE
var/motd
// var/policy

Expand Down Expand Up @@ -57,6 +57,8 @@

if (Master)
Master.OnConfigLoad()
if (CONFIG_GET(flag/use_bccm))
config.bccm = TRUE

/datum/controller/configuration/proc/full_wipe()
if(IsAdminAdvancedProcCall())
Expand Down
2 changes: 2 additions & 0 deletions code/controllers/configuration/entries/general.dm
Original file line number Diff line number Diff line change
Expand Up @@ -394,6 +394,8 @@

/datum/config_entry/flag/allow_map_voting

/datum/config_entry/flag/use_bccm

/datum/config_entry/number/client_warn_version
config_entry_value = null
min_val = 500
Expand Down
Loading

0 comments on commit c9b023c

Please sign in to comment.