Switch to named arguments for nightly compatibility

This commit is contained in:
SDraw 2024-10-08 14:30:49 +03:00
parent ecba461845
commit df46abbae4
No known key found for this signature in database
GPG key ID: BB95B4DAB2BB8BB5
2 changed files with 4 additions and 4 deletions

View file

@ -112,11 +112,11 @@ namespace ml_lme
}
}
static void OnRayScale_Postfix(float __0)
static void OnRayScale_Postfix(float scale)
{
try
{
OnRayScale.Invoke(__0);
OnRayScale.Invoke(scale);
}
catch(Exception e)
{