mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-09-11 23:06:00 +00:00
Orb of Chaos no longer despecializes Tortoises
This commit is contained in:
@@ -347,9 +347,8 @@ EX void moveItem1(cell *from, cell *to, bool activateYendor) {
|
||||
yendor::yi[i].actualKey = to;
|
||||
}
|
||||
|
||||
if(from->item == itBabyTortoise) {
|
||||
tortoise::babymap[to] = tortoise::babymap[from];
|
||||
tortoise::babymap.erase(from);
|
||||
if(from->item == itBabyTortoise || to->item == itBabyTortoise) {
|
||||
tortoise::move_baby(from, to);
|
||||
}
|
||||
|
||||
eItem i = to->item;
|
||||
|
Reference in New Issue
Block a user