-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
updated to PM4 #84
base: master
Are you sure you want to change the base?
updated to PM4 #84
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like this pr so far! Just need a few changes in order to release update
@@ -1,5 +1,5 @@ | |||
name: SkyWars | |||
api: 3.0.0 | |||
api: 4.0.0 | |||
version: 1.2.1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
version: 1.2.1 | |
version: 1.3.0-beta1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In order to update plugin on poggit it is required to increase the version
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also you should mention yourself in authors field
|
||
if(!$signPos->getLevel() instanceof Level || is_null($this->plugin->level)) return; | ||
if(!$signPos->getWorld() instanceof World || is_null($this->plugin->level)) return; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Position->getWorld() no longer returns null and is always of World instance
if(!$signPos->getWorld() instanceof World || is_null($this->plugin->level)) return; | |
if(!$signPos->getWorld()->isLoaded() || is_null($this->plugin->level)) return; |
Update ArenaScheduler.php
Sorry for the late answer, i will add the requested changes tomorrow. |
No description provided.