the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#include "Material.h"
2
3// 4J added, Java version just does a local alteration when instantiating the Material for webs to get the same thing
4class WebMaterial : public Material
5{
6public:
7 WebMaterial(MaterialColor *color) : Material(color) {}
8 virtual bool blocksMotion() { return false; }
9};