Changed a couple of very misleading default values

why on earth did I do this
This commit is contained in:
Dylan K. Taylor 2017-10-09 09:55:18 +01:00
parent 58788b4bc7
commit 748beaaaa7

View File

@ -427,7 +427,7 @@ class Player extends Human implements CommandSender, ChunkLoader, IPlayer{
return $this->allowMovementCheats;
}
public function setAllowMovementCheats(bool $value = false){
public function setAllowMovementCheats(bool $value = true){
$this->allowMovementCheats = $value;
}
@ -435,7 +435,7 @@ class Player extends Human implements CommandSender, ChunkLoader, IPlayer{
return $this->allowInstaBreak;
}
public function setAllowInstaBreak(bool $value = false){
public function setAllowInstaBreak(bool $value = true){
$this->allowInstaBreak = $value;
}