Advertisement
Guest User

Untitled

a guest
Nov 26th, 2015
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. if (opCode == 241) {
  2. regionY = inStream.readByteA();
  3. for (int z = 0; z < 4; z++) {
  4. for (int x = 0; x < 13; x++) {
  5. for (int y = 0; y < 13; y++) {
  6. int i26 = inStream.readByte();
  7. if (i26 == 5) {
  8. int val = Integer.parseInt(inStream.readString());
  9. constructRegionData[z][x][y] = val;
  10. } else {
  11. constructRegionData[z][x][y] = -1;
  12. }
  13. }
  14. }
  15. }
  16. regionX = inStream.readUnsignedWord();
  17. requestMapReconstruct = true;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement