Tweaks ghost orbit size math to be better

This commit is contained in:
MrStonedOne
2015-10-02 08:32:42 -07:00
parent de216b049a
commit 0c67263e1d
+2 -2
View File
@@ -211,8 +211,8 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp
var/icon/I = icon(target.icon,target.icon_state,target.dir)
var/orbitsize = (I.Width()+I.Height())/2
orbitsize -= (orbitsize/32)*8
var/orbitsize = (I.Width()+I.Height())*0.5
orbitsize -= (orbitsize/world.icon_size)*(world.icon_size*0.25)
if(orbiting != target)
src << "<span class='notice'>Now orbiting [target].</span>"