Commit 9635d783 authored by nanahira's avatar nanahira

fix

parent ea2176ea
...@@ -143,7 +143,7 @@ int32 scriptlib::duel_get_cards_in_zone(lua_State *L) { ...@@ -143,7 +143,7 @@ int32 scriptlib::duel_get_cards_in_zone(lua_State *L) {
return 0; return 0;
uint32 zone = lua_tointeger(L, 2); uint32 zone = lua_tointeger(L, 2);
duel* pduel = interpreter::get_duel_info(L); duel* pduel = interpreter::get_duel_info(L);
field::card_set cset; card_set cset;
pduel->game_field->get_cards_in_zone(&cset, zone, rplayer, LOCATION_MZONE); pduel->game_field->get_cards_in_zone(&cset, zone, rplayer, LOCATION_MZONE);
pduel->game_field->get_cards_in_zone(&cset, zone >> 8, rplayer, LOCATION_SZONE); pduel->game_field->get_cards_in_zone(&cset, zone >> 8, rplayer, LOCATION_SZONE);
pduel->game_field->get_cards_in_zone(&cset, zone >> 16, 1 - rplayer, LOCATION_MZONE); pduel->game_field->get_cards_in_zone(&cset, zone >> 16, 1 - rplayer, LOCATION_MZONE);
...@@ -1229,7 +1229,7 @@ int32 scriptlib::duel_confirm_decktop(lua_State *L) { ...@@ -1229,7 +1229,7 @@ int32 scriptlib::duel_confirm_decktop(lua_State *L) {
pduel->write_buffer8(MSG_CONFIRM_DECKTOP); pduel->write_buffer8(MSG_CONFIRM_DECKTOP);
pduel->write_buffer8(playerid); pduel->write_buffer8(playerid);
pduel->write_buffer8(count); pduel->write_buffer8(count);
field::card_set ccards; card_set ccards;
uint32 reason = 0; uint32 reason = 0;
if(lua_gettop(L) >= 3) if(lua_gettop(L) >= 3)
reason = lua_tointeger(L, 3); reason = lua_tointeger(L, 3);
......
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