From 58f1a0cff4ec48c442bbc8ef5bba5b604a46ce96 Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Thu, 7 Nov 2013 19:07:24 -0500 Subject: [PATCH] Bugfixes --- code/game/dna/dna_misc.dm | 2 +- code/modules/clothing/shoes/magboots.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/dna/dna_misc.dm b/code/game/dna/dna_misc.dm index 44973e26a1c..826defa893f 100644 --- a/code/game/dna/dna_misc.dm +++ b/code/game/dna/dna_misc.dm @@ -496,7 +496,7 @@ sleep(48) del(animation) - var/mob/living/carbon/human/O = new( src ) + var/mob/living/carbon/human/human/O = new( src ) if(Mo.greaterform) O.set_species(Mo.greaterform) diff --git a/code/modules/clothing/shoes/magboots.dm b/code/modules/clothing/shoes/magboots.dm index 2a4b8993e3e..d4bb0ccdad9 100644 --- a/code/modules/clothing/shoes/magboots.dm +++ b/code/modules/clothing/shoes/magboots.dm @@ -3,7 +3,7 @@ name = "magboots" icon_state = "magboots0" var/magpulse = 0 - species_restricted = list() + species_restricted = null verb/toggle()