Skip to content
Snippets Groups Projects

Bug fixes

  • Silicons can turn gas miners on and off now, fixes an unreported issue
  • MoMMIs can no longer drop things inside pipes, fixes #41
  • MoMMI's drop/store code cleaned up
  • Machinery from flatpacks no longer spawn items where the flatpack was spawned, fixes #78

I wanted to pass type paths for the flatpack problem, but fabricators require a machine object for a lot of it's icon state stuff. Might as well pass the object and recreate it when needed seeing as it has to exist already.

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
138 140 /*-------TODOOOOOOOOOO--------*/
139 141 // Called by store button
140 142 /mob/living/silicon/robot/mommi/uneq_active()
  • 79 79 instructions.name = "misprinted " + instructions.name
    80 80 instructions.update_icon()
    81 81 */
    82 machine.forceMove(src.loc)
    82 new machine.type(src.loc)
  • 58 58
    59 59 /obj/machinery/atmospherics/miner/attack_ai(var/mob/user)
    60 60 ..()
    61 on=!on
    • For one thing, this proc can probably just be erased if you are just calling ..()

      But more importantly, I believe silicons are meant to only be able to turn on/off a gas miner when it is unwrenched, so they cant mess with the roundstart ones I assume, that's how it was originally anyway

    • If a borg wanted to mess with the gas miners, most are more than well equipped to do way more damage already. Besides, the gas miner doesn't actually output anything if the external pressure is over 10,000. The roundstart gas miner rooms start with ~70,000.

  • Please register or sign in to reply
    Loading