17 lines
347 B
Java
17 lines
347 B
Java
package com.massivecraft.factions.engine;
|
|
|
|
import com.massivecraft.massivecore.ps.PS;
|
|
|
|
public class EngineMain
|
|
{
|
|
|
|
/**
|
|
* @deprecated moved to EnginePermBuild
|
|
*/
|
|
public static boolean canPlayerBuildAt(Object senderObject, PS ps, boolean verboose)
|
|
{
|
|
return EnginePermBuild.canPlayerBuildAt(senderObject, ps, verboose);
|
|
}
|
|
|
|
}
|