Skip to content

Commit

Permalink
Merge pull request #386 from omnidecker/columnextension
Browse files Browse the repository at this point in the history
Columnextension
  • Loading branch information
Seifert69 authored Jun 8, 2024
2 parents c51ac49 + f46028e commit 109f454
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions vme/src/act_change.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -152,15 +152,15 @@ static void chg_columns(unit_data *ch, const char *arg)
{
if (str_is_empty(arg) || !str_is_number(arg))
{
send_to_char("You must enter a column number between 40 and 160.<br/>", ch);
send_to_char("You must enter a column number between 40 and 240.<br/>", ch);
return;
}

int width = atoi(arg);

if ((width < 40) || (width > 160))
if ((width < 40) || (width > 240))
{
send_to_char("You must enter a column number between 40 and 160.<br/>", ch);
send_to_char("You must enter a column number between 40 and 240.<br/>", ch);
return;
}

Expand Down
2 changes: 1 addition & 1 deletion vme/src/mplex/MUDConnector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ int cMudHook::read_mud()

assert(is_in(con->m_sSetup.emulation, TERM_DUMB, TERM_INTERNAL));

assert(con->m_sSetup.width >= 40 && con->m_sSetup.width <= 160);
assert(con->m_sSetup.width >= 40 && con->m_sSetup.width <= 240);

assert(con->m_sSetup.height >= 15 && con->m_sSetup.height <= 60);

Expand Down

0 comments on commit 109f454

Please sign in to comment.