Merge branch '4.0' of Point808/PMMP_Plugins into master
This commit is contained in:
commit
564521ac9f
@ -1,9 +1,9 @@
|
||||
# AdminMail
|
||||
|
||||
PMMP plugin to email admins on some server events
|
||||
|
||||
Tested on 3.0.0-ALPHA5.
|
||||
|
||||
Edit config.yml with the address to send to. Your server will need to be set up to send email properly via php.
|
||||
|
||||
# AdminMail
|
||||
|
||||
PMMP plugin to email admins on some server events
|
||||
|
||||
Tested on 3.0.0 and 4.0.0.
|
||||
|
||||
Edit config.yml with the address to send to. Your server will need to be set up to send email properly via php.
|
||||
|
||||
PNAME will be replaced with player name
|
@ -4,7 +4,7 @@ namespace AdminMail;
|
||||
|
||||
use pocketmine\scheduler\Task;
|
||||
use pocketmine\Player;
|
||||
use pocketmine\event\player\PlayerJoinEvent;
|
||||
use pocketmine\event\player\PlayerLoginEvent;
|
||||
use pocketmine\plugin\PluginBase;
|
||||
use pocketmine\event\Listener;
|
||||
use pocketmine\command\Command;
|
||||
@ -22,8 +22,7 @@ class EmailTask extends Task {
|
||||
}
|
||||
|
||||
public function onRun(int $currentTick) {
|
||||
$player = $this->getOwner()->getServer()->getPlayer($this->playername);
|
||||
$name = $player->getName();
|
||||
$name = $this->playername;
|
||||
$admin = $this->adminmail;
|
||||
$admin1 = $this->adminsubject;
|
||||
$admin1 = str_replace("PNAME", $name, $admin1);
|
||||
|
Loading…
Reference in New Issue
Block a user