mirror of
https://github.com/Sei-Lisa/LSL-PyOptimizer
synced 2025-07-01 23:58:20 +00:00
The type checks were not strong enough. While on it, strengthen other similar checks as well. Reported by @Tonaie. Fixes #13.
10 lines
272 B
Text
10 lines
272 B
Text
default
|
|
{
|
|
state_entry()
|
|
{
|
|
llParticleSystem("" + llGetPhysicsMaterial());
|
|
llParticleSystem((list)"" + llGetPhysicsMaterial());
|
|
llParticleSystem(0 + llGetPhysicsMaterial());
|
|
llParticleSystem((list)0 + llGetPhysicsMaterial());
|
|
}
|
|
}
|