Merge branch 'develop' of github.com:ennorehling/eressea into develop

This commit is contained in:
Enno Rehling 2020-05-01 17:07:15 +02:00
commit 8a2a8afe01
3 changed files with 5 additions and 9 deletions

View File

@ -41,8 +41,8 @@ function test_destroy_is_long()
local u = unit.create(faction.create("human", "one@example.com", "de"), r1, 10)
u.building = building.create(u.region, "castle")
u:clear_orders()
u:add_order("LERNE Unterhaltung")
u:add_order("ZERSTOERE " .. itoa36(u.building.id))
u:add_order("LERNE Unterhaltung")
process_orders()
assert_equal(0, u:get_skill("entertainment"))
assert_equal(nil, u.building)

View File

@ -796,6 +796,9 @@ static void give_all_items(unit *u, unit *u2, order *ord) {
}
}
}
else {
cmistake(u, ord, 123, MSG_COMMERCE);
}
}
}
}

View File

@ -3091,14 +3091,7 @@ void update_long_order(unit * u)
}
break;
default:
if (kwd > thiskwd) {
/* swap out thisorder for the new one */
cmistake(u, u->thisorder, 52, MSG_EVENT);
set_order(&u->thisorder, copy_order(ord));
}
else {
cmistake(u, ord, 52, MSG_EVENT);
}
break;
}
}