From 481e03e04b055cebaf230b3a3cdce3446418c68c Mon Sep 17 00:00:00 2001 From: troido Date: Mon, 24 Feb 2020 14:39:04 +0100 Subject: added volatile wounds --- src/systems/mod.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/systems/mod.rs') diff --git a/src/systems/mod.rs b/src/systems/mod.rs index b1d0994..28cd128 100644 --- a/src/systems/mod.rs +++ b/src/systems/mod.rs @@ -12,6 +12,7 @@ mod attacking; mod trapping; mod fight; mod heal; +mod volate; pub use self::{ controlinput::ControlInput, @@ -26,5 +27,6 @@ pub use self::{ attacking::Attacking, trapping::Trapping, fight::Fight, - heal::Heal + heal::Heal, + volate::Volate }; -- cgit