requesting axe blacklist
buglord opened this issue ยท 1 comments
botania terra axe already functions similarly but registers as an axe even when removed from whitelist due to
TreeChopper/src/main/java/treechopper/proxy/CommonProxy.java
Lines 152 to 157 in e9f3284
sidenote (possible performance enhancement); throwing exceptions for every non-axe item is a bit messy, could check instanceof instead.
https://lsimons.wordpress.com/2009/07/20/instanceof-vs-classcastexception-performance-which-is-faster/ notes that speed is equivilant for casting exceptions and instanceof but makes no mention of memory usage. but also includes casting after instanceof which is not relevant for simply checking type.