Skip to content

Commit

Permalink
Fix misspelled constant
Browse files Browse the repository at this point in the history
  • Loading branch information
shartte committed Oct 5, 2023
1 parent 44ea207 commit 68e87f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/appeng/core/localization/GuiText.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public enum GuiText implements LocalizationEnum {
CanBeEnchanted("Can be enchanted"),
Cancel("Cancel"),
CantStoreItems("Can't Store Contents!"),
CantFitIncideStorageCell("This item does not fit in other storage cells"),
CantFitInsideStorageCell("This item does not fit in other storage cells"),
CellWorkbench("Cell Workbench"),
CertusQuartzObtain(
"Certus Quartz is grown by the various Budding Certus Quartz blocks, which can be found in meteors, or crafted from regular Certus Quartz blocks."),
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/appeng/menu/slot/CellPartitionSlot.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public Point getBackgroundPos() {
@Override
public @Nullable List<Component> getCustomTooltip(ItemStack carriedItem) {
if (!canFitInsideCell(carriedItem)) {
return List.of(Tooltips.of(GuiText.CantFitIncideStorageCell, Tooltips.RED));
return List.of(Tooltips.of(GuiText.CantFitInsideStorageCell, Tooltips.RED));
}

return super.getCustomTooltip(carriedItem);
Expand Down

0 comments on commit 68e87f6

Please sign in to comment.