Skip to content

Commit 55dff8e

Browse files
committedSep 24, 2015
Card Writer now respects the EEPROM size configs in the OpenComputers config.
1 parent 166a7d6 commit 55dff8e

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
 

‎src/main/java/pcl/opensecurity/tileentity/TileEntityCardWriter.java

+8
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
import li.cil.oc.api.network.Visibility;
1515
import li.cil.oc.common.item.EEPROM;
1616
import li.cil.oc.server.network.Network;
17+
import li.cil.oc.Settings;
1718
import net.minecraft.entity.player.EntityPlayer;
1819
import net.minecraft.inventory.IInventory;
1920
import net.minecraft.inventory.ISidedInventory;
@@ -25,6 +26,7 @@
2526
import pcl.opensecurity.OpenSecurity;
2627
import pcl.opensecurity.items.ItemMagCard;
2728
import pcl.opensecurity.items.ItemRFIDCard;
29+
import scala.actors.threadpool.Arrays;
2830

2931
public class TileEntityCardWriter extends TileEntityMachineBase implements Environment, IInventory, ISidedInventory {
3032

@@ -274,6 +276,12 @@ public Object[] flash(Context context, Arguments args) {
274276
CardWriterItemStacks[x] = eepromItem;
275277
NBTTagCompound oc_data = new NBTTagCompound();
276278
NBTTagCompound our_data = new NBTTagCompound();
279+
if(code.length > Settings.get().eepromSize()) {
280+
code = Arrays.copyOfRange(code, 0, 4096);
281+
}
282+
if(title.length() > Settings.get().eepromDataSize()) {
283+
title = title.substring(0, Settings.get().eepromDataSize());
284+
}
277285
our_data.setByteArray("oc:eeprom", code);
278286
our_data.setString("oc:label", title);
279287
our_data.setBoolean("oc:readonly", locked);

0 commit comments

Comments
 (0)
Please sign in to comment.