File tree Expand file tree Collapse file tree 12 files changed +27
-27
lines changed
java/net/anvian/inventorytweaks Expand file tree Collapse file tree 12 files changed +27
-27
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ loader_version=0.15.11
10
10
11
11
# Mod Properties
12
12
mod_version =1.0
13
- maven_group =net.anvian.smartinventory
14
- archives_base_name =SmartInventory
13
+ maven_group =net.anvian.inventorytweaks
14
+ archives_base_name =InventoryTweaks
15
15
16
16
# Dependencies
17
17
fabric_version =0.100.7+1.21
Original file line number Diff line number Diff line change 1
- package net .anvian .smartinventory ;
1
+ package net .anvian .inventorytweaks ;
2
2
3
- import net .anvian .smartinventory .handler .ModKeyBinding ;
3
+ import net .anvian .inventorytweaks .handler .ModKeyBinding ;
4
4
import net .fabricmc .api .ClientModInitializer ;
5
5
import org .slf4j .Logger ;
6
6
import org .slf4j .LoggerFactory ;
7
7
8
8
public class SmartInventory implements ClientModInitializer {
9
- public static final String MOD_ID = "smartinventory " ;
10
- public static final String MOD_NAME = "Smart Inventory" ;
9
+ public static final String MOD_ID = "inventorytweaks " ;
10
+ public static final String MOD_NAME = "Inventory Tweaks " ;
11
11
public static final Logger LOGGER = LoggerFactory .getLogger (MOD_ID );
12
12
13
13
@ Override
Original file line number Diff line number Diff line change 1
- package net .anvian .smartinventory .handler ;
1
+ package net .anvian .inventorytweaks .handler ;
2
2
3
3
import net .minecraft .client .MinecraftClient ;
4
4
import net .minecraft .client .network .ClientPlayerEntity ;
Original file line number Diff line number Diff line change 1
- package net .anvian .smartinventory .handler ;
1
+ package net .anvian .inventorytweaks .handler ;
2
2
3
3
import net .fabricmc .fabric .api .client .keybinding .v1 .KeyBindingHelper ;
4
4
import net .minecraft .client .option .KeyBinding ;
Original file line number Diff line number Diff line change 1
- package net .anvian .smartinventory .mixin ;
1
+ package net .anvian .inventorytweaks .mixin ;
2
2
3
- import net .anvian .smartinventory .handler .ModKeyBinding ;
4
- import net .anvian .smartinventory .sort .SortInventory ;
3
+ import net .anvian .inventorytweaks .handler .ModKeyBinding ;
4
+ import net .anvian .inventorytweaks .sort .SortInventory ;
5
5
import net .minecraft .client .MinecraftClient ;
6
6
import net .minecraft .client .gui .screen .Screen ;
7
7
import net .minecraft .client .gui .screen .ingame .CreativeInventoryScreen ;
Original file line number Diff line number Diff line change 1
- package net .anvian .smartinventory .slots ;
1
+ package net .anvian .inventorytweaks .slots ;
2
2
3
3
import net .minecraft .client .MinecraftClient ;
4
4
import net .minecraft .entity .player .PlayerInventory ;
Original file line number Diff line number Diff line change 1
- package net .anvian .smartinventory .slots ;
1
+ package net .anvian .inventorytweaks .slots ;
2
2
3
3
import net .minecraft .client .MinecraftClient ;
4
4
import net .minecraft .client .gui .screen .Screen ;
Original file line number Diff line number Diff line change 1
- package net .anvian .smartinventory .slots ;
1
+ package net .anvian .inventorytweaks .slots ;
2
2
3
3
import net .minecraft .client .MinecraftClient ;
4
4
import net .minecraft .client .gui .screen .ingame .InventoryScreen ;
Original file line number Diff line number Diff line change 1
- package net .anvian .smartinventory .sort ;
1
+ package net .anvian .inventorytweaks .sort ;
2
2
3
- import net .anvian .smartinventory .handler .Interaction ;
4
- import net .anvian .smartinventory .slots .ContainerSlots ;
5
- import net .anvian .smartinventory .slots .InventorySlots ;
6
- import net .anvian .smartinventory .slots .PlayerSlots ;
3
+ import net .anvian .inventorytweaks .handler .Interaction ;
4
+ import net .anvian .inventorytweaks .slots .ContainerSlots ;
5
+ import net .anvian .inventorytweaks .slots .InventorySlots ;
6
+ import net .anvian .inventorytweaks .slots .PlayerSlots ;
7
7
import net .minecraft .item .ItemStack ;
8
8
import net .minecraft .screen .ScreenHandler ;
9
9
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
{
2
2
"schemaVersion" : 1 ,
3
- "id" : " smartinventory " ,
3
+ "id" : " inventorytweaks " ,
4
4
"version" : " ${version}" ,
5
- "name" : " SmartInventory " ,
5
+ "name" : " Inventory Tweaks " ,
6
6
"description" : " A simple inventory management mod for Minecraft" ,
7
7
"authors" : [
8
8
" anvian"
9
9
],
10
10
"contact" : {
11
11
"homepage" : " " ,
12
- "sources" : " https://github.com/anviaan/SmartInventory " ,
13
- "issues" : " https://github.com/anviaan/SmartInventory /issues"
12
+ "sources" : " https://github.com/anviaan/InventoryTweaks " ,
13
+ "issues" : " https://github.com/anviaan/InventoryTweaks /issues"
14
14
},
15
15
"license" : " GPL-3.0" ,
16
- "icon" : " assets/smartinventory /icon.png" ,
16
+ "icon" : " assets/inventorytweaks /icon.png" ,
17
17
"environment" : " *" ,
18
18
"entrypoints" : {
19
19
"client" : [
20
- " net.anvian.smartinventory .SmartInventory"
20
+ " net.anvian.inventorytweaks .SmartInventory"
21
21
]
22
22
},
23
23
"mixins" : [
24
- " smartinventory .mixins.json"
24
+ " inventorytweaks .mixins.json"
25
25
],
26
26
"depends" : {
27
27
"fabricloader" : " >=0.15.11" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"required" : true ,
3
- "package" : " net.anvian.smartinventory .mixin" ,
3
+ "package" : " net.anvian.inventorytweaks .mixin" ,
4
4
"compatibilityLevel" : " JAVA_21" ,
5
5
"client" : [
6
6
" MixinKeyInputHandler"
You can’t perform that action at this time.
0 commit comments