summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/transfor.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/transfor.h')
-rw-r--r--crawl-ref/source/transfor.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/crawl-ref/source/transfor.h b/crawl-ref/source/transfor.h
index 45d0904bad..5d5480c026 100644
--- a/crawl-ref/source/transfor.h
+++ b/crawl-ref/source/transfor.h
@@ -14,6 +14,8 @@
#ifndef TRANSFOR_H
#define TRANSFOR_H
+#include <set>
+
#include "FixVec.h"
#include "enum.h"
@@ -44,7 +46,8 @@ bool transform(int pow, transformation_type which_trans);
/* ***********************************************************************
* called from: mutation - transfor
* *********************************************************************** */
-bool remove_equipment( FixedVector<char, 8>& remove_stuff );
+bool remove_equipment( std::set<equipment_type> remove_stuff );
+bool remove_one_equip(equipment_type eq);
bool transform_changed_physiology( bool phys_scales = false );