diff options
author | azazel <none@none> | 2010-08-22 23:46:40 +0600 |
---|---|---|
committer | azazel <none@none> | 2010-08-22 23:46:40 +0600 |
commit | 399e35f8f53aeabcda8af513a37bb855340663e5 (patch) | |
tree | 7beb6bf445bd0fd46e3341039b6d712bb08bbe2e /src/server/scripts/EasternKingdoms/hinterlands.cpp | |
parent | d38135d1fd9417f90ee6f9decc37767f95035596 (diff) |
Core:
* fix "warning C4305: 'initializing' : truncation from 'double' to 'float'" warnings
* fix some other warnings here and there
--HG--
branch : trunk
Diffstat (limited to 'src/server/scripts/EasternKingdoms/hinterlands.cpp')
-rw-r--r-- | src/server/scripts/EasternKingdoms/hinterlands.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/server/scripts/EasternKingdoms/hinterlands.cpp b/src/server/scripts/EasternKingdoms/hinterlands.cpp index 519172f4820..564619afeac 100644 --- a/src/server/scripts/EasternKingdoms/hinterlands.cpp +++ b/src/server/scripts/EasternKingdoms/hinterlands.cpp @@ -178,14 +178,14 @@ struct Location Location m_afAmbushSpawn[] = { - {191.296204, -2839.329346, 107.388}, - {70.972466, -2848.674805, 109.459} + {191.296204f, -2839.329346f, 107.388f}, + {70.972466f, -2848.674805f, 109.459f} }; Location m_afAmbushMoveTo[] = { - {166.630386, -2824.780273, 108.153}, - {70.886589, -2874.335449, 116.675} + {166.630386f, -2824.780273f, 108.153f}, + {70.886589f, -2874.335449f, 116.675f} }; class npc_rinji : public CreatureScript |