Archived
0

Improve descriptions

This commit is contained in:
Dico200
2017-05-29 14:09:25 +02:00
parent 102e999f13
commit 5441ea077c
5 changed files with 5 additions and 5 deletions

View File

@@ -42,7 +42,7 @@ public class ModInventory extends ModAbstract
@Override
public String getDescription()
{
return "Controls contents of " + inventoryType.name().toLowerCase() + "s upon placement";
return "Controls " + inventoryType.name().toLowerCase() + " placement content";
}
@Override

View File

@@ -18,7 +18,7 @@ public class ModToggledCauldron extends ModToggledAbstract
@Override
public String getDescription()
{
return "fills cauldrons upon placement and cycles upon right click";
return "If active, placed cauldrons are filled, and they cycle on right click";
}
@EventHandler

View File

@@ -19,7 +19,7 @@ public class ModToggledPiston extends ModToggledAbstract
@Override
public String getDescription()
{
return "makes pistons face the block you placed it against";
return "If active, pistons face the block you place them against";
}
@EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true)

View File

@@ -16,7 +16,7 @@ public class ModToggledStep extends ModToggledAbstract
@Override
public String getDescription()
{
return "turns steps upside-down upon placement";
return "If active, placed steps will always turn upside-down";
}
@EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true)

View File

@@ -27,7 +27,7 @@ public class ModToggledTorch extends ModToggledAbstract
@Override
public String getDescription()
{
return "removes redstone torches placed against a redstone block";
return "If active, redstone torches placed on a redstone block disappear quickly";
}
@EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true)