diff --git a/module/data/action/baseAction.mjs b/module/data/action/baseAction.mjs
index 12d2f26e..f773ae32 100644
--- a/module/data/action/baseAction.mjs
+++ b/module/data/action/baseAction.mjs
@@ -474,7 +474,7 @@ export default class DHBaseAction extends ActionMixin(foundry.abstract.DataModel
source.damage.main = null;
source.damage.resources = {};
for (const [partKey, part] of Object.entries(source.damage.parts)) {
- if (partKey === 'hitPoints') {
+ if (partKey === 'hitPoints' && source.type !== 'healing') {
source.damage.main = {
...part,
includeBase: source.damage.includeBase,
diff --git a/templates/actionTypes/damage.hbs b/templates/actionTypes/damage.hbs
index f315f8a1..df8a71b1 100644
--- a/templates/actionTypes/damage.hbs
+++ b/templates/actionTypes/damage.hbs
@@ -1,44 +1,46 @@
-
+{{/unless}}
{{#unless (eq path 'system.attack.')}}
{{! In the future, consider allowing this even on NPCs}}
{{#each source.resources as |dmg key|}}