summaryrefslogtreecommitdiff
path: root/plugins/drybuckets.cpp
diff options
context:
space:
mode:
authorAlexander Gavrilov2012-03-30 10:44:52 +0400
committerAlexander Gavrilov2012-03-30 10:44:52 +0400
commit81bc73f435ce4d5a609304c322c55d4053bcde91 (patch)
treef3b6462d4e5473ace4a129ec03f012bd0851eb05 /plugins/drybuckets.cpp
parent6a7e7241b8f3dd80a999d172cfc2572d8f58ec99 (diff)
downloaddfhack-81bc73f435ce4d5a609304c322c55d4053bcde91.tar.gz
dfhack-81bc73f435ce4d5a609304c322c55d4053bcde91.tar.bz2
dfhack-81bc73f435ce4d5a609304c322c55d4053bcde91.tar.xz
Follow a typo fix in flag name.
Diffstat (limited to 'plugins/drybuckets.cpp')
-rw-r--r--plugins/drybuckets.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/drybuckets.cpp b/plugins/drybuckets.cpp
index 431edd51..e54d2b90 100644
--- a/plugins/drybuckets.cpp
+++ b/plugins/drybuckets.cpp
@@ -32,7 +32,7 @@ command_result df_drybuckets (color_ostream &out, vector <string> & parameters)
df::item *item = world->items.all[i];
if ((item->getType() == item_type::LIQUID_MISC) && (item->getMaterial() == builtin_mats::WATER))
{
- item->flags.bits.garbage_colect = 1;
+ item->flags.bits.garbage_collect = 1;
dried_total++;
}
}