This is 6.4.1_dev, Fix Vault NPE.

This commit is contained in:
Olof Larsson 2013-06-23 09:27:36 +02:00
parent d8f8de1788
commit 7ec866f458
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,6 @@
main: com.massivecraft.mcore.MCore
name: mcore
version: 6.4.0
version: 6.4.1_dev
website: http://massivecraft.com/mcore
authors: [Cayorion]
description: §eMCore stands for MassiveCraft Core and is a plugin that contains libraries and features that other plugins make use of. §aCayorion §efrom the minecraft server §aMassiveCraft §eis the lead programmer. Feel free to visit us at §bhttp://massivecraft.com

View File

@ -25,6 +25,7 @@ public class MoneyMixinVault extends MoneyMixinAbstract
public void activate()
{
RegisteredServiceProvider<Economy> rsp = Bukkit.getServicesManager().getRegistration(Economy.class);
if (rsp == null) return;
this.economy = rsp.getProvider();
Money.mixin(this);
}