Batch of random bug fixes (#15067)

This commit is contained in:
Mykhailo Bykhovtsev
2022-11-10 20:41:17 -03:00
committed by GitHub
parent 3914e831eb
commit 4c0ef93dc5
6 changed files with 57 additions and 8 deletions
+2 -1
View File
@@ -137,6 +137,7 @@
name = "full steel tile"
desc = "A full steel floor tile."
icon_base = "steel_full"
has_damage_range = FALSE
build_type = /obj/item/stack/tile/floor/full
/decl/flooring/tiling/asteroid
@@ -225,7 +226,7 @@
name = "plasteel tiles"
desc = "A set of plasteel floor tiles."
icon_base = "dark"
has_damage_range = null
has_damage_range = FALSE
flags = TURF_REMOVE_CROWBAR
build_type = /obj/item/stack/tile/floor_dark
@@ -229,7 +229,7 @@
/obj/item/photo
)
/obj/item/gripper/research //A general usage gripper, used for toxins/robotics/xenobio/etc
/obj/item/gripper/research // A general usage gripper, used for toxins/robotics/xenobio/etc
name = "scientific gripper"
icon_state = "gripper-sci"
desc = "A simple grasping tool suited to assist in a wide array of research applications."
@@ -243,18 +243,20 @@
/obj/item/mecha_equipment,
/obj/item/device/radio/exosuit,
/obj/item/borg/upgrade,
/obj/item/device/flash, //to build borgs,
/obj/item/organ/internal/brain, //to insert into MMIs,
/obj/item/stack/cable_coil, //again, for borg building,
/obj/item/device/flash, // to build borgs,
/obj/item/organ/internal/brain, // to insert into MMIs,
/obj/item/stack/cable_coil, // again, for borg building,
/obj/item/circuitboard,
/obj/item/slime_extract,
/obj/item/reagent_containers/glass,
/obj/item/reagent_containers/food/snacks/monkeycube,
/obj/item/device/assembly,//For building bots and similar complex R&D devices
/obj/item/device/healthanalyzer,//For building medibots
/obj/item/seeds, // To be able to plant things for Xenobotany
/obj/item/grown, // To be able to plant things for Xenobotany
/obj/item/device/assembly, // For building bots and similar complex R&D devices
/obj/item/device/healthanalyzer,// For building medibots
/obj/item/disk,
/obj/item/device/analyzer/plant_analyzer,//For farmbot construction
/obj/item/material/minihoe,//Farmbots and xenoflora
/obj/item/material/minihoe, // Farmbots and xenoflora
/obj/item/computer_hardware,
/obj/item/slimesteroid,
/obj/item/extract_enhancer,
@@ -788,6 +788,7 @@ var/global/list/robot_modules = list(
. = ..()
modules += new /obj/item/portable_destructive_analyzer(src)
modules += new /obj/item/gripper/research(src)
modules += new /obj/item/robot_harvester(src)
modules += new /obj/item/gripper/no_use/loader(src)
modules += new /obj/item/device/robotanalyzer(src)
modules += new /obj/item/card/robot(src)
@@ -1042,6 +1043,7 @@ var/global/list/robot_modules = list(
/obj/item/robot_module/mining_drone
name = "mining drone module"
no_slip = TRUE
channels = list(CHANNEL_SUPPLY = TRUE)
networks = list(NETWORK_MINE)
/obj/item/robot_module/mining_drone/Initialize(mapload, mob/living/silicon/robot/R)
@@ -0,0 +1,44 @@
################################
# Example Changelog File
#
# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
#
# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
# When it is, any changes listed below will disappear.
#
# Valid Prefixes:
# bugfix
# wip (For works in progress)
# tweak
# soundadd
# sounddel
# rscadd (general adding of nice things)
# rscdel (general deleting of nice things)
# imageadd
# imagedel
# maptweak
# spellcheck (typo fixes)
# experiment
# balance
# admin
# backend
# security
# refactor
#################################
# Your name.
author: PoZe
# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
delete-after: True
# Any changes you've made. See valid prefix list above.
# INDENT WITH TWO SPACES. NOT TABS. SPACES.
# SCREW THIS UP AND IT WON'T WORK.
# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
changes:
- bugfix: "Fixed robotic storage unit turning invisible when occupied."
- bugfix: "Added broken state sprites for full steel and plasteel tiles."
- tweak: "Research Cyborg's scientific gripper can now interact with seeds and grown products. Added robot auto-harvester tool for collecting grown things."
- tweak: "Mining drone now has access to service channels."
Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 122 KiB

After

Width:  |  Height:  |  Size: 125 KiB