Skip to content

Commit 09da369

Browse files
Merge pull request #5129 from MistakeNot4892/dev
Update dev from staging/stable.
2 parents cf5117a + 71ce42c commit 09da369

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

code/modules/materials/definitions/solids/materials_solid_wood.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
dooropen_noise = 'sound/effects/doorcreaky.ogg'
4040
door_icon_base = "wood"
4141
destruction_desc = "splinters"
42-
hitsound = 'sound/effects/woodhit.ogg'
42+
hitsound = 'sound/effects/hit_wood.ogg'
4343
conductive = 0
4444
construction_difficulty = MAT_VALUE_NORMAL_DIY
4545
dissolves_into = list(

code/modules/modular_computers/file_system/programs/generic/scanner.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
category = PROG_UTIL
1111
nanomodule_path = /datum/nano_module/program/scanner
1212

13-
var/using_scanner = 0 //Whether or not the program is synched with the scanner module.
13+
var/using_scanner = 0 //Whether or not the program is synced with the scanner module.
1414
var/data_buffer = "" //Buffers scan output for saving/viewing.
1515
var/scan_file_type = /datum/computer_file/data/text //The type of file the data will be saved to.
1616
var/list/metadata_buffer = list()

code/modules/nano/modules/law_manager.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,4 +216,4 @@
216216
return
217217
for(var/mob/living/silicon/robot/robot in AI.connected_robots)
218218
robot.sync()
219-
log_and_message_admins("has syncronized [AI]'s laws with its borgs.")
219+
log_and_message_admins("has synchronized [AI]'s laws with its borgs.")

code/modules/random_map/noise/forage.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@
129129
if(floor.is_outside())
130130

131131
if(istype(flooring, /decl/flooring/rock))
132-
if(prob(15)) // Static as current map has limited amount of rock turfs
132+
if(prob(15) && !floor.contains_dense_objects()) // Static as current map has limited amount of rock turfs
133133
var/rock_type = SAFEPICK(forage["rocks"])
134134
new rock_type(floor)
135135
return

0 commit comments

Comments
 (0)