bump max dead ticks to 25 so death smoke cloud works properly

I wish this wasn't client sided... it's a pain to get it synced properly.
This commit is contained in:
Dylan K. Taylor 2017-11-22 19:55:25 +00:00
parent c5ac6a7606
commit 0badaeb8f4

View File

@ -53,7 +53,7 @@ abstract class Living extends Entity implements Damageable{
/** @var int */
public $deadTicks = 0;
/** @var int */
protected $maxDeadTicks = 20;
protected $maxDeadTicks = 25;
protected $invisible = false;