| 1965 | } |
| 1966 | |
| 1967 | static bool enable_plugin() |
| 1968 | { |
| 1969 | if (is_enabled) |
| 1970 | return true; |
| 1971 | |
| 1972 | auto entry = World::GetPersistentData("siege-engine/enabled", NULL); |
| 1973 | if (!entry.isValid()) |
| 1974 | return false; |
| 1975 | |
| 1976 | enable_hooks(true); |
| 1977 | return true; |
| 1978 | } |
| 1979 | |
| 1980 | static void clear_caches(color_ostream &out) |
| 1981 | { |
no test coverage detected