Baymerge fixes (#12)

* Fixing compile errors

* Some more fixes

* Some more fixes
This commit is contained in:
Werner
2016-11-19 11:56:49 +02:00
committed by skull132
parent 908fc933f9
commit ab413348ff
4 changed files with 25 additions and 5 deletions
+3 -3
View File
@@ -102,14 +102,14 @@
user << "<span class='notice'>\The [src] is empty.</span>"
return 1
var/types = target.find_type()
//var/types = target.find_type()
var/mob/living/carbon/human/H
if(istype(target, /mob/living/carbon/human))
H = target
if(target == user)
if(istype(user, /mob/living/carbon/human))
var/mob/living/carbon/human/H = user
H = user
if(!H.check_has_mouth())
user << "Where do you intend to put \the [src]? You don't have a mouth!"
return 1
@@ -125,7 +125,7 @@
return 1
else
if(istype(target, /mob/living/carbon/human))
var/mob/living/carbon/human/H = target
H = target
if(!H.check_has_mouth())
user << "Where do you intend to put \the [src]? \The [H] doesn't have a mouth!"
return