Commit f6592788 authored by salix5's avatar salix5

fix

Now the player cannot draw in turn 1.
parent 88571dcc
...@@ -3908,7 +3908,7 @@ int32 field::process_turn(uint16 step, uint8 turn_player) { ...@@ -3908,7 +3908,7 @@ int32 field::process_turn(uint16 step, uint8 turn_player) {
} }
case 2: { case 2: {
// Draw, new ruling // Draw, new ruling
if(!(core.duel_options & DUEL_OBSOLETE_RULING) || (infos.turn_id > 1)) { if((core.duel_options & DUEL_OBSOLETE_RULING) || (infos.turn_id > 1)) {
int32 count = get_draw_count(infos.turn_player); int32 count = get_draw_count(infos.turn_player);
if(count > 0) { if(count > 0) {
draw(0, REASON_RULE, turn_player, turn_player, count); draw(0, REASON_RULE, turn_player, turn_player, count);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment