Fix llGetColor in lslextrafuncs.py

Too much copy-paste. The name of the parameter should have been 'face', not 'id'.
This commit is contained in:
Sei Lisa 2016-12-21 00:41:08 +01:00
parent 991e811f2d
commit 1b7dbd9453

View file

@ -196,7 +196,7 @@ def llGetBoundingBox(id):
return [] return []
raise ELSLCantCompute raise ELSLCantCompute
def llGetColor(id): def llGetColor(face):
assert isinteger(face) assert isinteger(face)
if face > 8: if face > 8:
return ZERO_VECTOR return ZERO_VECTOR