From 9d53b5e235a991458f9c869fb07cea23ee36a560 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Fri, 24 Mar 2017 09:24:04 -0400 Subject: item cooldown --- src/player.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/player.cpp b/src/player.cpp index 1908af4..d9a4a98 100644 --- a/src/player.cpp +++ b/src/player.cpp @@ -242,10 +242,10 @@ void PlayerSystem::receive(const UseItemEvent& uie) } } - /*cool.store(false); - std::thread([&](void) { - std::this_thread::sleep_for(std::chrono::milliseconds(uie.item->cooldown)); + cool.store(false); + std::thread([&](unsigned int ms) { + std::this_thread::sleep_for(std::chrono::milliseconds(ms)); cool.store(true); - }).detach();*/ + }, uie.item->cooldown).detach(); } } -- cgit v1.2.3