explicitly set serialized name post obf
This commit is contained in:
parent
4679e12588
commit
352e428890
@ -17,11 +17,15 @@
|
|||||||
|
|
||||||
package baritone.api.utils;
|
package baritone.api.utils;
|
||||||
|
|
||||||
|
import com.google.gson.annotations.SerializedName;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Need a non obfed chunkpos that we can load using GSON
|
* Need a non obfed chunkpos that we can load using GSON
|
||||||
*/
|
*/
|
||||||
public class MyChunkPos {
|
public class MyChunkPos {
|
||||||
|
@SerializedName("x")
|
||||||
public int x;
|
public int x;
|
||||||
|
@SerializedName("y")
|
||||||
public int z;
|
public int z;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
Reference in New Issue
Block a user