From 52308d67287ff93cfb9c124a2095bd04f31ad922 Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Mon, 28 Oct 2013 11:23:58 -0400 Subject: [PATCH] Photocopier fix --- code/modules/paperwork/photocopier.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/paperwork/photocopier.dm b/code/modules/paperwork/photocopier.dm index cca92018d87..79df43cfdcc 100644 --- a/code/modules/paperwork/photocopier.dm +++ b/code/modules/paperwork/photocopier.dm @@ -94,14 +94,14 @@ usr << "You feel kind of silly copying [ass == usr ? "your" : ass][ass == usr ? "" : "\'s"] ass with [ass == usr ? "your" : "their"] clothes on." else if(toner >= 5 && check_ass()) //You have to be sitting on the copier and either be a xeno or a human without clothes on. if(isalien(ass) || istype(ass,/mob/living/simple_animal/hostile/alien)) //Xenos have their own asses, thanks to Pybro. - temp_img = icon("icons/ass/assalien.png") + temp_img = icon('icons/ass/assalien.png') else if(ishuman(ass)) //Suit checks are in check_ass if(ass.gender == MALE) - temp_img = icon("icons/ass/assmale.png") + temp_img = icon('icons/ass/assmale.png') else if(ass.gender == FEMALE) - temp_img = icon("icons/ass/assfemale.png") + temp_img = icon('icons/ass/assfemale.png') else //In case anyone ever makes the generic ass. For now I'll be using male asses. - temp_img = icon("icons/ass/assmale.png") + temp_img = icon('icons/ass/assmale.png') else break var/obj/item/weapon/photo/p = new /obj/item/weapon/photo (loc)