Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion MessageMaker/LyraDefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ struct Lyra {
MAX_DB_QUERY_ACK = 4096,

GOAL_SUMMARY_LENGTH = 64,
QUEST_KEYWORDS_LENGTH = 64,
QUEST_KEYWORDS_LENGTH = MAX_ITEMDESC,
MAX_GOAL_LENGTH = 2048,
MAX_REPORT_LENGTH = 1024,
MAX_SIMUL_GOALS = 512,
Expand Down
1 change: 0 additions & 1 deletion Underlight/cArts.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10547,7 +10547,6 @@ void cArts::EndCombine(void)

this->ArtFinished(true);
}


return;
}
Expand Down
2 changes: 1 addition & 1 deletion Underlight/cItem.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class cNeighbor;
#define NO_ITEM 0

const int NO_EXPLOSION_ORNAMENT = 0;
const int ITEM_DESCRIP_LENGTH = 48;
const int ITEM_DESCRIP_LENGTH = Lyra::MAX_ITEMDESC;
const unsigned char INFINITE_CHARGES = 255;

enum item_status {
Expand Down