ID:2059727
 
(See the best response by Kaiochao.)
Code:
if(T)
var/obj/item/clothing/mask/facehugger/throw = new()
facehuggers -= 1
usedthrow = 1
throw.loc = src.loc
throw.throw_at(T, 5, THROWSPEED)
src << "We throw a facehugger at [throw]"
visible_message("\red <B>[src] throws something towards [T]!</B>")


Problem description:
code\modules\mob\living\carbon\alien\humanoid\caste\carrier. dm:86:error: throw.loc: undefined type path

code\modules\mob\living\carbon\alien\humanoid\caste\carrier. dm:87:error: .throw_at: undefined type path




WHAT FUCK IS HAPPANED ;-;?

Best response
Looks like, since "throw" became a keyword (try/catch/throw), you can't use it as a variable name anymore.
Ok more What do I do ?
In response to Lucas325
Replace the name "throw" with another name.
'-' example "FUCK" in Throw?
In response to Lucas325
Please refrain from inappropriate language in the forums. A good replacement example would be:

var/obj/item/clothing/mask/facehugger/facehugger_object = new(src.loc)
facehuggers -= 1
usedthrow = 1
facehugger_object.throw_at(T, 5, THROWSPEED)
src << "We throw a facehugger at [T]"
visible_message("\red <B>[src] throws something towards [T]!</B>")
thank you and sorry :3