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

@ -1,6 +1,6 @@
default{timer(){
list a;
list a = llGetPhysicsMaterial();
integer b = llGetLinkNumber();
a += 1;
a += b;
@ -23,4 +23,5 @@ default{timer(){
a = (list)(list)(list)(list)(list)[b] + a;
a = (list)(list)(list)(list)(list)1 + a;
a = (list)(list)(list)(list)(list)b + a;
llParticleSystem(a);
}}

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);
}
}