Fix Go data type for WHITE_CARDS and WINNING_CARD cuz I just guessed when I made them in the first place.
This commit is contained in:
parent
6d289ef925
commit
43f9b70d54
|
@ -572,9 +572,10 @@ public class Constants {
|
||||||
@GoDataType("bool")
|
@GoDataType("bool")
|
||||||
WALL(AjaxRequest.WALL),
|
WALL(AjaxRequest.WALL),
|
||||||
@DuplicationAllowed
|
@DuplicationAllowed
|
||||||
@GoDataType("[]WhiteCardData")
|
@GoDataType("[][]WhiteCardData")
|
||||||
WHITE_CARDS(AjaxResponse.WHITE_CARDS),
|
WHITE_CARDS(AjaxResponse.WHITE_CARDS),
|
||||||
@GoDataType("WhiteCardData")
|
// This is just the ID of one of the cards played by the winner
|
||||||
|
@GoDataType("int")
|
||||||
WINNING_CARD("WC");
|
WINNING_CARD("WC");
|
||||||
|
|
||||||
private final String field;
|
private final String field;
|
||||||
|
|
Loading…
Reference in New Issue