diff --git a/code/modules/admin/create_object.dm b/code/modules/admin/create_object.dm index 248eebb5ab9..0e74f2cab5a 100644 --- a/code/modules/admin/create_object.dm +++ b/code/modules/admin/create_object.dm @@ -15,7 +15,7 @@ var/quick_create_object_html = null var/pathtext = null - pathtext = input("Select the path of the object you wish to create.", "Path", "/obj") in list("/obj","/obj/structure","/obj/item","/obj/machinery") + pathtext = input("Select the path of the object you wish to create.", "Path", "/obj") in list("/obj","/obj/structure","/obj/item","/obj/item/weapon","/obj/machinery") var path = text2path(pathtext) diff --git a/code/modules/mob/living/carbon/human/human_defense.dm b/code/modules/mob/living/carbon/human/human_defense.dm index 9ffbb5dc451..df20678c13d 100644 --- a/code/modules/mob/living/carbon/human/human_defense.dm +++ b/code/modules/mob/living/carbon/human/human_defense.dm @@ -37,7 +37,7 @@ emp_act if(check_shields(P.damage, "the [P.name]")) P.on_hit(src, 2) return 2 - return (..()) + return (..(P , def_zone)) /mob/living/carbon/human/getarmor(var/def_zone, var/type) diff --git a/code/modules/projectiles/gun.dm b/code/modules/projectiles/gun.dm index a7dccbcf285..d2abc52d7be 100644 --- a/code/modules/projectiles/gun.dm +++ b/code/modules/projectiles/gun.dm @@ -1,5 +1,5 @@ /obj/item/weapon/gun - name = "\improper Gun" + name = "gun" desc = "Its a gun. It's pretty terrible, though." icon = 'gun.dmi' icon_state = "detective"