migrate /mob/living/silicon to Initialize() (#31934)

* migrate /mob/living/silicon to Initialize()

* fix some arg calls for spawning borgs

* remove even more args from robot Initialize
This commit is contained in:
Toastical
2026-05-17 10:37:33 +00:00
committed by GitHub
parent fc11af7788
commit 937e251683
8 changed files with 30 additions and 37 deletions
+1 -1
View File
@@ -63,7 +63,7 @@
invisibility = 101
// Creating a new borg here will connect them to a default AI and notify that AI, if `connect_to_default_AI` is TRUE.
var/mob/living/silicon/robot/O = new /mob/living/silicon/robot(loc, connect_to_AI = connect_to_default_AI)
var/mob/living/silicon/robot/O = new /mob/living/silicon/robot(loc, connect_to_default_AI)
// If `AI` is passed in, we want to connect to that AI specifically.
if(AI)