Future-proof of list-plus-elem.lsl and list-plus-elem.out

This commit is contained in:
Sei Lisa
2020-04-23 13:29:06 +02:00
parent c8a0a21823
commit 4d75f0f792
2 changed files with 4 additions and 2 deletions

View File

@@ -2,7 +2,7 @@ default
{
timer()
{
list a;
list a = llGetPhysicsMaterial();
integer b = llGetLinkNumber();
a = a + 1;
a = a + b;
@@ -24,5 +24,6 @@ default
a = b + a;
a = 1 + a;
a = b + a;
llParticleSystem(a);
}
}