<!> You don't need the expansion anymore. remove it <!>
- Fixed placeholders breaks when you reload the server. now it supports
"/reload" and "/papi reload" but it dosen't support "/plugman reload" [I tried many times to implement that but looks like it's impossible :i]
- The command "/prx reload" now reloads PlaceholderAPI & MVdWPlaceholderAPI Placeholders
- Added Direct Support for PermissionsEX because PEX dosen't like Vault for some reason
- API Changes:
to use PRXAPI now you have to do this for example:
Code (Java):
PRXAPI prxAPI
;
public
void onEnable
(
)
{
prxAPI
=
new PRXAPI
(
)
;
Bukkit.
getPluginManager
(
).
registerEvents
(
this,
this
)
;
}
public
void onDisable
(
)
{
}
@EventHandler
public
void onJoin
(PlayerJoinEvent e
)
{
prxAPI.
getPlayerRank
(prxAPI.
getSafePlayer
(e.
getPlayer
(
)
)
;
}