mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2025-07-19 01:34:04 +00:00
Allow admins to use lava/water buckets
This commit is contained in:
@@ -53,7 +53,7 @@ public class TFM_PlayerListener implements Listener
|
||||
{
|
||||
case WATER_BUCKET:
|
||||
{
|
||||
if (TFM_ConfigEntry.ALLOW_WATER_PLACE.getBoolean())
|
||||
if (TFM_AdminList.isSuperAdmin(player) || TFM_ConfigEntry.ALLOW_WATER_PLACE.getBoolean())
|
||||
{
|
||||
break;
|
||||
}
|
||||
@@ -66,7 +66,7 @@ public class TFM_PlayerListener implements Listener
|
||||
|
||||
case LAVA_BUCKET:
|
||||
{
|
||||
if (TFM_ConfigEntry.ALLOW_LAVA_PLACE.getBoolean())
|
||||
if (TFM_AdminList.isSuperAdmin(player) || TFM_ConfigEntry.ALLOW_LAVA_PLACE.getBoolean())
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
Reference in New Issue
Block a user