Skip to content
This repository has been archived by the owner on May 3, 2018. It is now read-only.

Commit

Permalink
block translator reduce block ids
Browse files Browse the repository at this point in the history
  • Loading branch information
DefinitlyEvil committed Dec 10, 2014
1 parent f290055 commit a61d786
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ public class ItemTranslator_v0_10_0 implements ItemTranslator{

public ItemTranslator_v0_10_0() {
/* ===== PC to PE ===== */
for (int i = 0; i <= 24; i++) {
itemMap_PC_to_PE.put(1, 1);
itemMap_PC_to_PE.put(2, 2);
itemMap_PC_to_PE.put(3, 3);
for (int i = 8; i <= 11; i++) {
itemMap_PC_to_PE.put(i, i);
}
//TODO: More blocks/items
Expand Down

0 comments on commit a61d786

Please sign in to comment.