Added assert to method setColor
This commit is contained in:
parent
216e060195
commit
6e3cdb83ec
|
@ -47,6 +47,7 @@ function RichEmbed:setTimestamp()
|
||||||
end
|
end
|
||||||
|
|
||||||
function RichEmbed:setColor(rgb)
|
function RichEmbed:setColor(rgb)
|
||||||
|
assert(rgb, "Color cannot be nil")
|
||||||
self.color = rgb.R * 65536 + rgb.G * 256 + rgb.B
|
self.color = rgb.R * 65536 + rgb.G * 256 + rgb.B
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Reference in New Issue