1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-30 13:32:59 +00:00

Copy wparam when copying wall

This commit is contained in:
Jesse Ruderman
2021-07-12 22:42:45 -07:00
parent 039d86cd13
commit aa548e3467
2 changed files with 5 additions and 1 deletions

View File

@@ -182,6 +182,7 @@ EX void moveMonster(const movei& mi) {
if(isLeader(m)) {
if(ct->wall == waBigStatue) {
ct->wall = cf->wall;
ct->wparam = cf->wparam;
cf->wall = waBigStatue;
animateMovement(mi.rev(), LAYER_BOAT);
}