Skip to content

Commit

Permalink
Fix Small Problems
Browse files Browse the repository at this point in the history
Fixes #13
  • Loading branch information
APickledWalrus committed Mar 7, 2021
1 parent 5626da5 commit ae70d25
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
id 'eclipse'
}

version '1.2.1'
version '1.2.2'

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,6 @@ public static Inventory newInventory(InventoryType type, @Nullable Integer size,

if (name == null) {
name = type.getDefaultTitle();
} else if (name.length() > 32) {
name = name.substring(0, 32);
}

if (type == InventoryType.CHEST)
Expand Down
3 changes: 3 additions & 0 deletions src/main/resources/lang/english.lang
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@ slot types:
outside: outside
quickbar: quickbar, quick bar, hotbar, hot bar, bottom row
result: result, crafting result, smelting result
types:
guiinventory: gui inventor¦y¦ies
slottype: slot type¦s
2 changes: 1 addition & 1 deletion src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: skript-gui
main: io.github.apickledwalrus.skriptgui.SkriptGUI
version: 1.2.1
version: 1.2.2
authors: [APickledWalrus, Tuke_Nuke]
description: Enables the easy creation of advanced and organized GUIs with Skript.
website: https://github.com/APickledWalrus/skript-gui
Expand Down

0 comments on commit ae70d25

Please sign in to comment.