File tree 2 files changed +5
-10
lines changed
src/main/java/lordfokas/stargatetech2/transport
2 files changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -11,19 +11,16 @@ public class TileBeaconConsole extends TileBeacon{
11
11
12
12
@ Override
13
13
protected void readNBT (NBTTagCompound nbt ) {
14
- // TODO Auto-generated method stub
15
-
14
+ iface .readFromNBT (nbt , "interface" );
16
15
}
17
16
18
17
@ Override
19
18
protected void writeNBT (NBTTagCompound nbt ) {
20
- // TODO Auto-generated method stub
21
-
19
+ iface .writeToNBT (nbt , "interface" );
22
20
}
23
21
24
22
@ Override
25
23
public IBusInterface [] getInterfaces (int side ) {
26
24
return new IBusInterface []{iface };
27
25
}
28
-
29
- }
26
+ }
Original file line number Diff line number Diff line change @@ -11,14 +11,12 @@ public class TileBeaconMatterGrid extends TileBeacon {
11
11
12
12
@ Override
13
13
protected void readNBT (NBTTagCompound nbt ) {
14
- // TODO Auto-generated method stub
15
-
14
+ iface .readFromNBT (nbt , "interface" );
16
15
}
17
16
18
17
@ Override
19
18
protected void writeNBT (NBTTagCompound nbt ) {
20
- // TODO Auto-generated method stub
21
-
19
+ iface .writeToNBT (nbt , "interface" );
22
20
}
23
21
24
22
@ Override
You can’t perform that action at this time.
0 commit comments