mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-28 22:47:59 +01:00
several fixes inc #233
Fixes icon creation issue in certain situations such as humanising monkeys and cloning Fixes humanized monkeys reverting to monkey name after being used for cloning Fixes humanized monkeys being made as human parent object instead of human/race
This commit is contained in:
@@ -108,7 +108,10 @@
|
||||
|
||||
var/mob/living/carbon/human/O
|
||||
if(Mo.greaterform)
|
||||
O = new(src, Mo.greaterform)
|
||||
var/greatform = lowertext(Mo.greaterform)
|
||||
var/typepath = "/mob/living/carbon/human/"
|
||||
typepath += greatform
|
||||
O = new typepath(src, greatform)
|
||||
else
|
||||
O = new(src)
|
||||
|
||||
@@ -152,6 +155,7 @@
|
||||
continue
|
||||
else
|
||||
O.real_name = randomname
|
||||
O.dna.real_name = randomname
|
||||
i++
|
||||
O.UpdateAppearance()
|
||||
O.take_overall_damage(M.getBruteLoss(), M.getFireLoss())
|
||||
|
||||
Reference in New Issue
Block a user