switch to standard of snake_case in ids and resource files

This commit is contained in:
Raoul Van den Berge
2015-12-27 21:23:35 +01:00
parent 995600bd16
commit 0c16a1e2d6
19 changed files with 67 additions and 164 deletions

6
src/main/java/storagecraft/item/ItemStorageCell.java Normal file → Executable file
View File

@@ -21,7 +21,7 @@ public class ItemStorageCell extends ItemBase
public ItemStorageCell()
{
super("storageCell");
super("storage_cell");
setMaxStackSize(1);
setHasSubtypes(true);
@@ -42,11 +42,11 @@ public class ItemStorageCell extends ItemBase
{
if (getCapacity(cell) == -1)
{
list.add(String.format(StatCollector.translateToLocal("misc.storagecraft:storageCellStored"), getStored(cell)));
list.add(String.format(StatCollector.translateToLocal("misc.storagecraft:storage_cell_stored"), getStored(cell)));
}
else
{
list.add(String.format(StatCollector.translateToLocal("misc.storagecraft:storageCellStoredWithCapacity"), getStored(cell), getCapacity(cell)));
list.add(String.format(StatCollector.translateToLocal("misc.storagecraft:storage_cell_stored_capacity"), getStored(cell), getCapacity(cell)));
}
}