runtime icon indicating copy to clipboard operation
runtime copied to clipboard

[BUG] _this missing from arguments when transpiling a function

Open overfl0 opened this issue 4 years ago • 0 comments

player addEventHandler ["HandleDamage", {
    hint format ["You just sustained %1%2 damage!", ceil ((_this select 2) * 100), "%"];
}];

Gives:

player.addeventhandler("HandleDamage", function() {
    hint($"You just sustained {ceil(_this[2] * 100)}{"%"} damage!");
});

overfl0 avatar Mar 03 '21 02:03 overfl0