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:
Andy Janata 2018-03-30 16:28:01 -07:00
parent 6d289ef925
commit 43f9b70d54
1 changed files with 3 additions and 2 deletions

View File

@ -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;