Kundello

Untitled

Feb 26th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1.  
  2. /**
  3. * Checks whether the skin is valid.
  4. */
  5. protected function validSkin(): bool
  6. {
  7. $this->skinRatio = (int)($this->width($this->skin) / 128);
  8.  
  9. $validWidth = $this->width($this->skin) / $this->skinRatio === 128;
  10. $validHeight = $this->height($this->skin) / $this->skinRatio === 64;
  11.  
  12. return ($validWidth && $validHeight) ? true : false;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment