CarbonCopy(atom/movable/O in world)
set desc = "() Create an exact duplicate of a given object"
set category = "Blunt Spec"
var/mob/M = O
if(istype(M)
usr << "You can't duplicate PCs' mobs"
var/atom/new_O = new O.type(O.loc)
for(var/V in O.vars)
if(issaved(O.vars[V])) new_O.vars[V] = O.vars[V]
usr << "[O] was duplicated."
Problem description:
Admin.dm:113:error: usr: missing comma ',' or right-paren ')'
not sure whats wrong with this but it jumps to the line
usr << "You can't duplicate PCs' mobs"