Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e0a0a26

Browse files
committed
ANY_GENERIC35 -> 36
1 parent 52f99f4 commit e0a0a26

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

plugins/strangemood.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -885,10 +885,10 @@ command_result df_strangemood (color_ostream &out, vector <string> & parameters)
885885
case job_skill::WEAVING:
886886
case job_skill::CLOTHESMAKING:
887887
filter = NULL;
888-
// TODO: do proper search through world->items.other[items_other_id::ANY_GENERIC35] for item_type CLOTH, mat_type 0, flags2.deep_material, and min_dimension 10000
889-
for (size_t i = 0; i < world->items.other[items_other_id::ANY_GENERIC35].size(); i++)
888+
// TODO: do proper search through world->items.other[items_other_id::ANY_GENERIC36] for item_type CLOTH, mat_type 0, flags2.deep_material, and min_dimension 10000
889+
for (size_t i = 0; i < world->items.other[items_other_id::ANY_GENERIC36].size(); i++)
890890
{
891-
filter = world->items.other[items_other_id::ANY_GENERIC35][i];
891+
filter = world->items.other[items_other_id::ANY_GENERIC36][i];
892892
if (filter->getType() != item_type::CLOTH)
893893
{
894894
filter = NULL;
@@ -973,10 +973,10 @@ command_result df_strangemood (color_ostream &out, vector <string> & parameters)
973973
case job_skill::FORGE_FURNITURE:
974974
case job_skill::METALCRAFT:
975975
filter = NULL;
976-
// TODO: do proper search through world->items.other[items_other_id::ANY_GENERIC35] for item_type BAR, mat_type 0, and flags2.deep_material
977-
for (size_t i = 0; i < world->items.other[items_other_id::ANY_GENERIC35].size(); i++)
976+
// TODO: do proper search through world->items.other[items_other_id::ANY_GENERIC36] for item_type BAR, mat_type 0, and flags2.deep_material
977+
for (size_t i = 0; i < world->items.other[items_other_id::ANY_GENERIC36].size(); i++)
978978
{
979-
filter = world->items.other[items_other_id::ANY_GENERIC35][i];
979+
filter = world->items.other[items_other_id::ANY_GENERIC36][i];
980980
if (filter->getType() != item_type::BAR)
981981
{
982982
filter = NULL;

0 commit comments

Comments
 (0)