TNT: expose unstable flag

This commit is contained in:
Dylan K. Taylor 2021-02-06 23:46:51 +00:00
parent fd2ebd84b4
commit bd4ce8d941
No known key found for this signature in database
GPG Key ID: 8927471A91CAFD3D

View File

@ -64,6 +64,14 @@ class TNT extends Opaque{
public function getNonPersistentStateBitmask() : int{ return 0b1; }
public function isUnstable() : bool{ return $this->unstable; }
/** @return $this */
public function setUnstable(bool $unstable) : self{
$this->unstable = $unstable;
return $this;
}
public function worksUnderwater() : bool{ return $this->worksUnderwater; }
/** @return $this */