diff --git a/rpg-docs/client/views/character/features/features.html b/rpg-docs/client/views/character/features/features.html
index a3c6f1df..c99053f7 100644
--- a/rpg-docs/client/views/character/features/features.html
+++ b/rpg-docs/client/views/character/features/features.html
@@ -133,6 +133,9 @@
{{title}}
+
{{/if}}
diff --git a/rpg-docs/client/views/character/features/features.js b/rpg-docs/client/views/character/features/features.js
index 17873a2f..d6cc1ea5 100644
--- a/rpg-docs/client/views/character/features/features.js
+++ b/rpg-docs/client/views/character/features/features.js
@@ -129,6 +129,11 @@ Template.resource.helpers({
});
Template.resource.events({
+ "click .resourceReset": function(event){
+ var modifier = {$set: {}};
+ modifier.$set[this.name + ".adjustment"] = 0;
+ Characters.update(this.char._id, modifier, {validate: false});
+ },
"click .resourceUp": function(event){
var value = Characters.calculate.attributeValue(this.char._id, this.name);
var base = Characters.calculate.attributeBase(this.char._id, this.name);