diff options
| -rw-r--r-- | examples/resources/lib/color.lua | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/examples/resources/lib/color.lua b/examples/resources/lib/color.lua index 7c98e92..9fc31f0 100644 --- a/examples/resources/lib/color.lua +++ b/examples/resources/lib/color.lua @@ -29,9 +29,6 @@ local metatable = { __pow = function( c, v ) return Color:new( c.r ^ v, c.g ^ v, c.b ^ v, c.a ^ v ) end, - __idiv = function( c, v ) - return Color:new( c.r // v, c.g // v, c.b // v, c.a // v ) - end, __len = function() return 4 end, |
