No idea how this happened

This commit is contained in:
Dylan K. Taylor 2017-08-17 11:15:42 +01:00
parent 56e45a031b
commit 77376d3e33

View File

@ -387,8 +387,6 @@ class Effect{
* @param int $r * @param int $r
* @param int $g * @param int $g
* @param int $b * @param int $b
*
* @return int
*/ */
public function setColor(int $r, int $g, int $b){ public function setColor(int $r, int $g, int $b){
$this->color = (($r & 0xff) << 16) + (($g & 0xff) << 8) + ($b & 0xff); $this->color = (($r & 0xff) << 16) + (($g & 0xff) << 8) + ($b & 0xff);