From a373c3858e5ddf5e7da6750c8b6cb63931622a12 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 25 Jul 2010 10:17:16 +0000 Subject: [PATCH] - fixed: A_Teleport's RNG had the same name as the one used by SelectTeleDest. SVN r2458 (trunk) --- src/thingdef/thingdef_codeptr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/thingdef/thingdef_codeptr.cpp b/src/thingdef/thingdef_codeptr.cpp index 36abb056c..4330c204c 100644 --- a/src/thingdef/thingdef_codeptr.cpp +++ b/src/thingdef/thingdef_codeptr.cpp @@ -82,7 +82,7 @@ static FRandom pr_spawndebris ("SpawnDebris"); static FRandom pr_spawnitemex ("SpawnItemEx"); static FRandom pr_burst ("Burst"); static FRandom pr_monsterrefire ("MonsterRefire"); -static FRandom pr_teleport("Teleport"); +static FRandom pr_teleport("A_Teleport"); //==========================================================================