Player: remove deprecated parameter from sendPopup()

This commit is contained in:
Dylan K. Taylor 2019-06-25 19:41:00 +01:00
parent a6395c9ac7
commit 42b1c45fa5

View File

@ -2164,9 +2164,8 @@ class Player extends Human implements CommandSender, ChunkLoader, ChunkListener,
* TODO: add translation type popups
*
* @param string $message
* @param string $subtitle @deprecated
*/
public function sendPopup(string $message, string $subtitle = ""){
public function sendPopup(string $message){
$this->networkSession->onPopup($message);
}