From 360d8eade0332f2c1aa5c205ca772cd506c35b26 Mon Sep 17 00:00:00 2001 From: peterbell10 Date: Tue, 13 Jun 2017 20:35:30 +0100 Subject: FastRandom rewrite (#3754) --- src/Map.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/Map.cpp') diff --git a/src/Map.cpp b/src/Map.cpp index 5db09adba..2fe901d8e 100644 --- a/src/Map.cpp +++ b/src/Map.cpp @@ -306,10 +306,8 @@ const cMapDecorator cMap::CreateDecorator(const cEntity * a_TrackedEntity) if (GetDimension() == dimNether) { - cFastRandom Random; - // TODO 2014-02-19 xdot: Refine - Rot = Random.NextInt(16); + Rot = GetRandomProvider().RandInt(15); } else { -- cgit v1.2.3