From a8d2b97c27c76459eb7f056dfe5d85ddf0857b73 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sat, 7 Mar 2020 23:52:25 +0100 Subject: [PATCH] changes: fixed Orb of Impact --- orbs.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/orbs.cpp b/orbs.cpp index af39accf..4d5320d2 100644 --- a/orbs.cpp +++ b/orbs.cpp @@ -1119,6 +1119,7 @@ EX void apply_impact(cell *c) { if(!c1->monst) continue; if(isMultitile(c1->monst)) continue; addMessage(XLAT("You stun %the1!", c1->monst)); + changes.ccell(c1); c1->stuntime = min(c1->stuntime + 5, 7); checkStunKill(c1); }