Factions/src/com/massivecraft/factions/engine/EngineMain.java

18 lines
407 B
Java
Raw Normal View History

package com.massivecraft.factions.engine;
2014-06-04 14:02:23 +02:00
import com.massivecraft.massivecore.ps.PS;
2017-01-03 11:47:51 +01:00
public class EngineMain
{
2013-04-18 15:59:20 +02:00
2017-01-03 11:47:51 +01:00
/**
* @deprecated moved to EnginePermBuild
*/
public static boolean canPlayerBuildAt(Object senderObject, PS ps, boolean verboose)
{
Boolean ret = EnginePermBuild.protect(ProtectCase.BUILD, verboose, senderObject, ps, null, null);
return ret == null || !ret;
}
}