mirror of
https://github.com/Sei-Lisa/LSL-PyOptimizer
synced 2025-07-01 15:48:21 +00:00
Also added some min/max values for a few functions. This allows optimizing things like: ! llGetNumberOfPrims() -> 0
11 lines
229 B
Text
11 lines
229 B
Text
default
|
|
{
|
|
touch(integer n)
|
|
{
|
|
if (llSameGroup(llGetOwner()) & llDetectedGroup(0))
|
|
llDie();
|
|
if ((integer)llGetEnergy() & -llSameGroup(llGetOwner()))
|
|
llDie();
|
|
llDie();
|
|
}
|
|
}
|