couple of stuff.

This commit is contained in:
Alberyk
2020-04-22 13:52:51 -03:00
parent 60552d11c4
commit 1649ee1290
8 changed files with 9 additions and 9 deletions

View File

@@ -155,11 +155,11 @@
..()
if(source)
to_chat(user, "<span class='notice'>\The [src] snaps back onto \the [source].</span>")
addtimer(CALLBACK(source, /obj/item/minigunpack/.proc/remove_gun), 1)
INVOKE_ASYNC(source, /obj/item/minigunpack/.proc/remove_gun)
source.update_icon()
user.update_inv_back()
/obj/item/gun/projectile/automatic/rifle/minigun/Move()
..()
if(loc != source.loc)
addtimer(CALLBACK(source, /obj/item/minigunpack/.proc/remove_gun), 1)
INVOKE_ASYNC(source, /obj/item/minigunpack/.proc/remove_gun)

View File

@@ -75,7 +75,7 @@
H.name += " [pick(last_names)]"
H.real_name = H.name
addtimer(CALLBACK(H, /mob/living/carbon/human.proc/set_species, randomize), 1)
INVOKE_ASYNC(H, /mob/living/carbon/human.proc/set_species, randomize)
H.universal_speak = 1
var/datum/preferences/A = new() //Randomize appearance for the human
A.randomize_appearance_for(H)