* Add option to always look at top card of deck Similar to "always reveal", but reveals card only to the owner, not all players. * Add option to always look at top card of deck Similar to "always reveal", but reveals card only to the owner, not all players. * Update bug_report.md (#4246) * Update bug_report.md * reproduction steps * Update to address review comments * Clangify * set playerId on dumpEvent Co-authored-by: tooomm <tooomm@users.noreply.github.com> Co-authored-by: ebbit1q <ebbit1q@gmail.com> Co-authored-by: Zach H <zahalpern+github@gmail.com>
14 lines
387 B
Protocol Buffer
14 lines
387 B
Protocol Buffer
syntax = "proto2";
|
|
import "game_commands.proto";
|
|
|
|
message Command_ChangeZoneProperties {
|
|
extend GameCommand {
|
|
optional Command_ChangeZoneProperties ext = 1031;
|
|
}
|
|
optional string zone_name = 1;
|
|
|
|
// Reveal top card to all players.
|
|
optional bool always_reveal_top_card = 10;
|
|
// reveal top card to the owner.
|
|
optional bool always_look_at_top_card = 11;
|
|
}
|