mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-22 16:12:19 +00:00
Fix constructed borgs being utterly broken (#2632)
New() was runtiming since it can't pass named arguments.
This commit is contained in:
@@ -201,7 +201,7 @@
|
||||
user << "<span class='warning'>This [W] does not seem to fit.</span>"
|
||||
return
|
||||
|
||||
var/mob/living/silicon/robot/O = new /mob/living/silicon/robot(get_turf(loc), unfinished = 1)
|
||||
var/mob/living/silicon/robot/O = new /mob/living/silicon/robot(get_turf(loc), TRUE)
|
||||
if(!O) return
|
||||
|
||||
user.drop_item()
|
||||
|
||||
Reference in New Issue
Block a user