ID:78495
 
This issue has been marked as a duplicate of id:77493
BYOND Version:447
Operating System:Windows Vista Home Premium
Web Browser:Internet Explorer 8.0
Status: Duplicate

This issue has been marked as a duplicate of id:77493
Descriptive Problem Summary:on my damage text...Older veriosn of byond displayed all numbers that were called on my damage text proc. But 447 has caused the proc to only display a damage number once than every other number does not display.

Numbered Steps to Reproduce Problem:

Code Snippet (if applicable) to Reproduce Problem:
        var/atom/target = Target
if(ismob(Target) || isobj(Target))
target = Target.loc
for(var/obj/damage_num/O in Numbers)
O.loc = target
flick(O.damage_value, O)
spawn(10)
del O


Expected Results:diplay every number to a mob that calls the proc

Actual Results:

Does the problem occur:
Every time? Or how often?every time in version 447
In other games?
In other user accounts?
On other computers?

When does the problem NOT occur?installing older versions than 447. I heard though that 447 was suppose to fix the flick proc so it might be that.

Workarounds: above else if 447 than if i increase spawn time such as 10 shows one number 20 shows 2 and etc.