This repository was archived by the owner on Mar 29, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 9 files changed +25
-11
lines changed
java/com/refinedmods/refinedstorageaddons
resources/assets/refinedstorageaddons/lang Expand file tree Collapse file tree 9 files changed +25
-11
lines changed Original file line number Diff line number Diff line change 1- # Contributing to Refined Storage
1+ # Contributing to Refined Storage Addons
22
33## Versioning
44
Original file line number Diff line number Diff line change 1+ patreon : raoulvdberge
Original file line number Diff line number Diff line change @@ -7,6 +7,13 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77
88## [ Unreleased]
99
10+ ### Added
11+
12+ - Added support for Refined Storage v1.10.0-beta.4.
13+ - Added Korean translation by [ @mindy15963 ] ( https://github.com/mindy15963 ) .
14+
15+ ## [ v0.8.0] - 2021-12-15
16+
1017### Added
1118- Ported to Minecraft 1.18.1.
1219
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ apply plugin: 'maven-publish'
3434
3535group = ' com.refinedmods'
3636archivesBaseName = ' refinedstorageaddons'
37- version = ' 0.8.0 '
37+ version = ' 0.8.1 '
3838
3939if (System . getenv(' GITHUB_SHA' ) != null ) {
4040 version + = ' +' + System . getenv(' GITHUB_SHA' ). substring(0 , 7 )
@@ -95,8 +95,8 @@ processResources {
9595
9696dependencies {
9797 minecraft ' net.minecraftforge:forge:1.18.1-39.0.0'
98- compileOnly " com.refinedmods:refinedstorage:1.10.0-beta.1 "
99- runtimeOnly fg. deobf(" com.refinedmods:refinedstorage:1.10.0-beta.1 " ) {
98+ compileOnly " com.refinedmods:refinedstorage:1.10.0-beta.4 "
99+ runtimeOnly fg. deobf(" com.refinedmods:refinedstorage:1.10.0-beta.4 " ) {
100100 transitive false
101101 }
102102}
Original file line number Diff line number Diff line change 33import com .refinedmods .refinedstorage .api .IRSAPI ;
44import com .refinedmods .refinedstorage .api .RSAPIInject ;
55import com .refinedmods .refinedstorageaddons .config .ServerConfig ;
6- import com .refinedmods .refinedstorageaddons .item .group .MainItemGroup ;
6+ import com .refinedmods .refinedstorageaddons .item .group .MainCreativeModeTab ;
77import com .refinedmods .refinedstorageaddons .setup .ClientSetup ;
88import com .refinedmods .refinedstorageaddons .setup .CommonSetup ;
99import net .minecraft .world .item .Item ;
@@ -22,7 +22,7 @@ public final class RSAddons {
2222
2323 public static final String ID = "refinedstorageaddons" ;
2424 public static final ServerConfig SERVER_CONFIG = new ServerConfig ();
25- public static final MainItemGroup MAIN_GROUP = new MainItemGroup ();
25+ public static final MainCreativeModeTab CREATIVE_MODE_TAB = new MainCreativeModeTab ();
2626
2727 public RSAddons () {
2828 DistExecutor .unsafeRunWhenOn (Dist .CLIENT , () -> () -> {
Original file line number Diff line number Diff line change 66import com .refinedmods .refinedstorage .api .network .security .Permission ;
77import com .refinedmods .refinedstorage .apiimpl .API ;
88import com .refinedmods .refinedstorage .inventory .player .PlayerSlot ;
9- import com .refinedmods .refinedstorage .util .WorldUtils ;
9+ import com .refinedmods .refinedstorage .util .LevelUtils ;
1010import com .refinedmods .refinedstorageaddons .RSAddons ;
1111import com .refinedmods .refinedstorageaddons .apiimpl .network .grid .WirelessCraftingGridGridFactory ;
1212import com .refinedmods .refinedstorageaddons .item .WirelessCraftingGridItem ;
@@ -49,7 +49,7 @@ public boolean onOpen(INetwork network) {
4949 }
5050
5151 if (!network .getSecurityManager ().hasPermission (Permission .MODIFY , player )) {
52- WorldUtils .sendNoPermissionMessage (player );
52+ LevelUtils .sendNoPermissionMessage (player );
5353
5454 return false ;
5555 }
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ public enum Type {
2222
2323 public WirelessCraftingGridItem (Type type ) {
2424 super (
25- new Item .Properties ().tab (RSAddons .MAIN_GROUP ).stacksTo (1 ),
25+ new Item .Properties ().tab (RSAddons .CREATIVE_MODE_TAB ).stacksTo (1 ),
2626 type == Type .CREATIVE ,
2727 () -> RSAddons .SERVER_CONFIG .getWirelessCraftingGrid ().getCapacity ()
2828 );
Original file line number Diff line number Diff line change 55import net .minecraft .world .item .CreativeModeTab ;
66import net .minecraft .world .item .ItemStack ;
77
8- public class MainItemGroup extends CreativeModeTab {
9- public MainItemGroup () {
8+ public class MainCreativeModeTab extends CreativeModeTab {
9+ public MainCreativeModeTab () {
1010 super (RSAddons .ID );
1111 }
1212
Original file line number Diff line number Diff line change 1+ {
2+ "itemGroup.refinedstorageaddons" : " 리파인드 스토리지 애드온" ,
3+ "item.refinedstorageaddons.wireless_crafting_grid" : " 무선 제작 그리드" ,
4+ "item.refinedstorageaddons.creative_wireless_crafting_grid" : " 크리에이티브 무선 제작 그리드" ,
5+ "key.refinedstorageaddons.openWirelessCraftingGrid" : " 개방형 무선 제작 그리드"
6+ }
You can’t perform that action at this time.
0 commit comments