removed obsolete code

This commit is contained in:
Philipp Dreher 2015-11-02 13:06:14 +01:00
parent 2f02c27659
commit bf779fc810
1 changed files with 2 additions and 13 deletions

View File

@ -528,24 +528,13 @@ void drown(region * r)
unit **up = up = &r->units;
while (*up) {
unit *u = *up;
int amphibian_level = 0;
if (u->ship || u_race(u) == get_race(RC_SPELL) || u->number == 0) {
up = &u->next;
continue;
}
if (amphibian_level) {
int dead = damage_unit(u, "5d1", false, false);
if (dead) {
ADDMSG(&u->faction->msgs, msg_message("drown_amphibian_dead",
"amount unit region", dead, u, r));
}
else {
ADDMSG(&u->faction->msgs, msg_message("drown_amphibian_nodead",
"unit region", u, r));
}
}
else if (!(canswim(u) || canfly(u))) {
if (!(canswim(u) || canfly(u))) {
scale_number(u, 0);
ADDMSG(&u->faction->msgs, msg_message("drown", "unit region", u, r));
}