cache: add get_zoom_distance

This commit is contained in:
Adam
2018-01-26 20:47:13 -05:00
parent 4ca7ee2014
commit cdfc7c549a
2 changed files with 2 additions and 1 deletions

View File

@@ -472,7 +472,7 @@ public class Instructions
add(SET_ZOOM_DISTANCE, "set_zoom_distance", 2, 0);
add(6202, 4, 0);
add(GET_VIEWPORT_SIZE, "get_viewport_size", 0, 2);
add(6204, 0, 2);
add(GET_ZOOM_DISTANCE, "get_zoom_distance", 0, 2);
add(6205, 0, 2);
// 6300-6600
add(LOAD_WORLDS, "load_worlds", 0, 1);

View File

@@ -364,6 +364,7 @@ public class Opcodes
public static final int CANCEL_LOGIN = 5630;
public static final int SET_ZOOM_DISTANCE = 6201;
public static final int GET_VIEWPORT_SIZE = 6203;
public static final int GET_ZOOM_DISTANCE = 6204;
public static final int LOAD_WORLDS = 6500;
public static final int GET_FIRST_WORLD = 6501;
public static final int GET_NEXT_WORLD = 6502;