Skip to content

Instantly share code, notes, and snippets.

@zKoz210
Last active August 10, 2017 16:28
Show Gist options
  • Save zKoz210/641ac98836d03960a5901b391882b658 to your computer and use it in GitHub Desktop.
Save zKoz210/641ac98836d03960a5901b391882b658 to your computer and use it in GitHub Desktop.
<?php
namespace ProtectHub;
use pocketmine\metadata\MetadataValue;
class ProtectMeta extends MetadataValue
{
public function __construct(Plugin $owningPlugin)
{
parent::__construct($owningPlugin);
}
public function value()
{
return true;
}
public function invalidate()
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment