diff --git a/game/modules/tome/class/Actor.lua b/game/modules/tome/class/Actor.lua
index 9f6dcc5a9524d789a361dd081455d9abbf5f0800..1664aa120d2e29484e6f9e44a469ac1496149abb 100644
--- a/game/modules/tome/class/Actor.lua
+++ b/game/modules/tome/class/Actor.lua
@@ -3661,6 +3661,26 @@ function _M:preUseTalent(ab, silent, fake)
 
 	return true
 end
+
+local sustainCallbackCheck = {
+	callbackOnAct = "talents_on_act",
+	callbackOnActBase = "talents_on_act_base",
+	callbackOnMove = "talents_on_move",
+	callbackOnRest = "talents_on_rest",
+}
+_M.sustainCallbackCheck = sustainCallbackCheck
+
+function _M:fireTalentCheck(event, ...)
+	local store = sustainCallbackCheck[event]
+	local ret = false
+	if self[store] and next(self[store]) then
+		for tid, _ in pairs(self[store]) do
+			ret = self:callTalent(tid, event, ...) or ret
+		end
+	end
+	return ret
+end
+
 --- Called after a talent is used
 -- Check if it must use a turn, mana, stamina, ...
 -- @param ab the talent (not the id, the table)
@@ -3752,17 +3772,11 @@ function _M:postUseTalent(ab, ret, silent)
 			if ab.sustain_feedback then
 				trigger = true; self:incMaxFeedback(-util.getval(ab.sustain_feedback, self, ab))
 			end
-			if ab.callbackOnAct then
-				self.talents_on_act = self.talents_on_act or {}
-				self.talents_on_act[ab.id] = true
-			end
-			if ab.callbackOnActBase then
-				self.talents_on_act_base = self.talents_on_act_base or {}
-				self.talents_on_act_base[ab.id] = true
-			end
-			if ab.callbackOnMove then
-				self.talents_on_move = self.talents_on_move or {}
-				self.talents_on_move[ab.id] = true
+			for event, store in pairs(sustainCallbackCheck) do
+				if ab[event] then
+					self[store] = self[store] or {}
+					self[store][ab.id] = true
+				end
 			end
 		else
 			if ab.sustain_mana then
@@ -3795,17 +3809,11 @@ function _M:postUseTalent(ab, ret, silent)
 			if ab.sustain_feedback then
 				self:incMaxFeedback(util.getval(ab.sustain_feedback, self, ab))
 			end
-			if ab.callbackOnAct then
-				self.talents_on_act[ab.id] = nil
-				if not next(self.talents_on_act) then self.talents_on_act = nil end
-			end
-			if ab.callbackOnActBase then
-				self.talents_on_act_base[ab.id] = nil
-				if not next(self.talents_on_act_base) then self.talents_on_act_base = nil end
-			end
-			if ab.callbackOnMove then
-				self.talents_on_move[ab.id] = nil
-				if not next(self.talents_on_move) then self.talents_on_move = nil end
+			for event, store in pairs(sustainCallbackCheck) do
+				if ab[event] then
+					self[store][ab.id] = nil
+					if not next(self[store]) then self[store] = nil end
+				end
 			end
 		end
 	elseif not self:attr("force_talent_ignore_ressources") then
diff --git a/game/modules/tome/class/Player.lua b/game/modules/tome/class/Player.lua
index ba315a489f7d0dc5b32771f0237f8dd41b8a078d..e074403ec6db7c717c534079dac3be352460065b 100644
--- a/game/modules/tome/class/Player.lua
+++ b/game/modules/tome/class/Player.lua
@@ -801,8 +801,9 @@ function _M:restCheck()
 		for act, def in pairs(game.party.members) do if game.level:hasEntity(act) and not act.dead then
 			if act.life < act.max_life and act.life_regen> 0 then return true end
 		end end
-
 		if ammo and ammo.combat.shots_left < ammo.combat.capacity and ((self:hasEffect(self.EFF_RELOADING)) or (ammo.combat.ammo_every and ammo.combat.ammo_every > 0)) then return true end
+
+		if self:fireTalentCheck("callbackOnRest") then return true end
 	else
 		return true
 	end
diff --git a/game/modules/tome/data/talents/corruptions/bone.lua b/game/modules/tome/data/talents/corruptions/bone.lua
index 0b3303b59653c34f9dbad2316cd4d0710d655a0d..a6dfd2ea5c84e284516eb3e84d841975f0dbd7e3 100644
--- a/game/modules/tome/data/talents/corruptions/bone.lua
+++ b/game/modules/tome/data/talents/corruptions/bone.lua
@@ -127,6 +127,11 @@ newTalent{
 	direct_hit = true,
 	getNb = function(self, t) return math.ceil(self:getTalentLevel(t)) end,
 	getRegen = function(self, t) return math.max(math.floor(30 / t.getNb(self, t)), 3) end,
+	callbackOnRest = function(self, t)
+		local nb = t.getNb(self, t)
+		local p = self.sustain_talents[t.id]
+		if not p or #p.particles < nb then return true end
+	end,
 	callbackOnActBase = function(self, t)
 		local p = self.sustain_talents[t.id]
 		p.next_regen = (p.next_regen or 1) - 1