|
14 | 14 | import li.cil.oc.api.network.Visibility;
|
15 | 15 | import li.cil.oc.common.item.EEPROM;
|
16 | 16 | import li.cil.oc.server.network.Network;
|
| 17 | +import li.cil.oc.Settings; |
17 | 18 | import net.minecraft.entity.player.EntityPlayer;
|
18 | 19 | import net.minecraft.inventory.IInventory;
|
19 | 20 | import net.minecraft.inventory.ISidedInventory;
|
|
25 | 26 | import pcl.opensecurity.OpenSecurity;
|
26 | 27 | import pcl.opensecurity.items.ItemMagCard;
|
27 | 28 | import pcl.opensecurity.items.ItemRFIDCard;
|
| 29 | +import scala.actors.threadpool.Arrays; |
28 | 30 |
|
29 | 31 | public class TileEntityCardWriter extends TileEntityMachineBase implements Environment, IInventory, ISidedInventory {
|
30 | 32 |
|
@@ -274,6 +276,12 @@ public Object[] flash(Context context, Arguments args) {
|
274 | 276 | CardWriterItemStacks[x] = eepromItem;
|
275 | 277 | NBTTagCompound oc_data = new NBTTagCompound();
|
276 | 278 | 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 | + } |
277 | 285 | our_data.setByteArray("oc:eeprom", code);
|
278 | 286 | our_data.setString("oc:label", title);
|
279 | 287 | our_data.setBoolean("oc:readonly", locked);
|
|
0 commit comments