2014-10-08 06:38:26 +02:00
|
|
|
package com.massivecraft.factions.engine;
|
2013-04-10 12:25:46 +02:00
|
|
|
|
2014-06-04 14:02:23 +02:00
|
|
|
import com.massivecraft.massivecore.ps.PS;
|
2013-04-10 12:25:46 +02:00
|
|
|
|
2017-01-03 11:47:51 +01:00
|
|
|
public class EngineMain
|
2013-04-10 12:25:46 +02:00
|
|
|
{
|
2013-04-18 15:59:20 +02:00
|
|
|
|
2017-01-03 11:47:51 +01:00
|
|
|
/**
|
|
|
|
* @deprecated moved to EnginePermBuild
|
|
|
|
*/
|
2014-09-19 09:30:08 +02:00
|
|
|
public static boolean canPlayerBuildAt(Object senderObject, PS ps, boolean verboose)
|
2013-04-17 16:21:25 +02:00
|
|
|
{
|
2017-01-03 11:47:51 +01:00
|
|
|
return EnginePermBuild.canPlayerBuildAt(senderObject, ps, verboose);
|
2013-04-17 16:21:25 +02:00
|
|
|
}
|
|
|
|
|
2013-04-10 12:25:46 +02:00
|
|
|
}
|