kimjoy2002 / crawl

Dungeon Crawl: Stone Soup Korean fork repository
Other
29 stars 19 forks source link

크래쉬 저장 #576

Closed kimjoy2002 closed 3 years ago

kimjoy2002 commented 3 years ago

https://webzook.net/soup/morgue/kimchi_master/Huckle/crash-Huckle-20210401-011347.txt https://webzook.net/soup/morgue/kimchi_master/Huckle/crash-Huckle-20210402-012923.txt https://webzook.net/soup/morgue/kimchi_master/Huckle/crash-Huckle-20210418-141707.txt https://webzook.net/soup/morgue/kimchi_master/zotfling/crash-zotfling-20210418-112311.txt https://webzook.net/soup/morgue/kimchi_master/otab/crash-otab-20210410-095306.txt

확인해볼것들

Gittourarmy commented 3 years ago

반신족의 경우 Wyrm 제단 부순 후에 문제가 발생하는 거 같아요. item-use.cc:3012

if (player_under_penance(GOD_WYRM) && one_chance_in(3))
    {
        if (in_inventory(*potion))
        {
            dec_inv_item_quantity(potion->link, 1);
            auto_assign_item_slot(*potion);
        }
        else if (in_bag(*potion))
        {
            potion->quantity--;
            if (potion->quantity == 0) {
                potion->base_type = OBJ_UNASSIGNED;
                potion->props.clear();
            }
        }
        else {
            dec_mitm_item_quantity(potion->index(), 1);
        }
        count_action(CACT_USE, OBJ_POTIONS);

        simple_god_message(" extracts your potion just before you drink!", GOD_WYRM);
        you.turn_is_over = true;
        return;
    }
kimjoy2002 commented 3 years ago
  1. 파켈라스 로드로 능력 선택시 범위를 벗어나는 알파벳이 선택되서 크래쉬나는 버그
  2. 1과 동일
  3. 반신족으로 Wrym제단을 부수고 물약을 사용시 나는 버그
  4. 3과 동일
  5. crustacean로 rod를 사용하는 아티피셔 고를때 나는 버그

모두 수정되었음