From 6d32802dd47701d8fa2b9c804603dfa1d19454c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Thu, 26 May 2011 02:13:29 +0200 Subject: [PATCH] Vegetation update order is a 16bit integer! --- library/include/dfhack/modules/Vegetation.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/library/include/dfhack/modules/Vegetation.h b/library/include/dfhack/modules/Vegetation.h index 9639228f7..86236fcdf 100644 --- a/library/include/dfhack/modules/Vegetation.h +++ b/library/include/dfhack/modules/Vegetation.h @@ -44,7 +44,8 @@ namespace DFHack /** * 0x58 - the updates are staggered into 9? groups. this seems to be what differentiates the plants. */ - uint32_t update_order; + uint16_t update_order; + uint16_t padding2; // a vector is here // some more temperature stuff after that };