Skip to content

Commit 2882112

Browse files
authored
Merge branch 'Alliance-codeBase:master' into master
2 parents 13ca524 + e170c6d commit 2882112

113 files changed

Lines changed: 447 additions & 313 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

_maps/catwalkstation.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"map_name": "Catwalk Station",
44
"map_path": "map_files/CatwalkStation",
55
"map_file": "CatwalkStation_2023.dmm",
6+
"exclude_from_ci": true,
67
"shuttles": {
78
"emergency": "emergency_catwalk",
89
"ferry": "ferry_fancy",

_maps/deltastation.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"map_name": "Delta Station",
44
"map_path": "map_files/Deltastation",
55
"map_file": "DeltaStation2.dmm",
6+
"exclude_from_ci": true,
67
"shuttles": {
78
"emergency": "emergency_delta",
89
"ferry": "ferry_fancy",

_maps/icebox.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"map_name": "Ice Box Station",
44
"map_path": "map_files/IceBoxStation",
55
"map_file": "IceBoxStation.dmm",
6+
"exclude_from_ci": true,
67
"space_ruin_levels": 0,
78
"space_empty_levels": 0,
89
"wilderness_levels": 2,

_maps/metastation.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"map_name": "MetaStation",
44
"map_path": "map_files/MetaStation",
55
"map_file": "MetaStation.dmm",
6+
"exclude_from_ci": true,
67
"shuttles": {
78
"cargo": "cargo_box",
89
"ferry": "ferry_fancy",

_maps/nebulastation.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"map_name": "NebulaStation",
44
"map_path": "map_files/NebulaStation",
55
"map_file": "NebulaStation.dmm",
6+
"exclude_from_ci": true,
67
"give_players_hooks": 1,
78
"shuttles": {
89
"cargo": "cargo_nebula",

_maps/tramstation.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"map_name": "Tramstation",
44
"map_path": "map_files/tramstation",
55
"map_file": "tramstation.dmm",
6+
"exclude_from_ci": true,
67
"give_players_hooks": 1,
78
"shuttles": {
89
"cargo": "cargo_box",

_maps/wawastation.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"map_name": "Wawastation",
44
"map_path": "map_files/wawastation",
55
"map_file": "wawastation.dmm",
6+
"exclude_from_ci": true,
67
"give_players_hooks": 1,
78
"shuttles": {
89
"cargo": "cargo_box",

code/__DEFINES/DNA.dm

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@
9393
#define ORGAN_SLOT_BRAIN_CEREBELLUM "brain_antidrop"
9494
#define ORGAN_SLOT_BRAIN_CNS "brain_antistun"
9595
#define ORGAN_SLOT_BREATHING_TUBE "breathing_tube"
96+
#define ORGAN_SLOT_BUTT "butt" //MASSMETA ADD (butt_farts)
9697
#define ORGAN_SLOT_EARS "ears"
9798
#define ORGAN_SLOT_EYES "eye_sight"
9899
#define ORGAN_SLOT_HEART "heart"

code/__DEFINES/robots.dm

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,10 @@ DEFINE_BITFIELD(bot_cover_flags, list(
142142
#define VIBE_BOT "Vibebot"
143143
/// Repairbots
144144
#define REPAIR_BOT "Repairbot"
145+
//MASSMETA ADD (butt_farts)
146+
/// Buttbots
147+
#define BUTT_BOT "Buttbot"
148+
//MASSMETA ADD END
145149

146150
// General Bot modes //
147151
/// Idle

code/__DEFINES/sound.dm

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,12 @@
1212
#define CHANNEL_ELEVATOR 1014
1313
#define CHANNEL_ESCAPEMENU 1013
1414
#define CHANNEL_WEATHER 1012
15+
//MASSMETA ADD BEGIN (butt_farts)
16+
#define CHANNEL_FART_SOUNDS 1011 // выделяем в отдельную группу, чтобы можно было в префах регулировать звуки "пу"
17+
//MASSMETA ADD END
1518
//THIS SHOULD ALWAYS BE THE LOWEST ONE!
1619
//KEEP IT UPDATED
17-
#define CHANNEL_HIGHEST_AVAILABLE 1011
20+
#define CHANNEL_HIGHEST_AVAILABLE 1010 //MASSMETA CHANGE (butt_farts)
1821

1922
#define MAX_INSTRUMENT_CHANNELS (128 * 6)
2023

0 commit comments

Comments
 (0)