the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#include "stdafx.h"
2#include "SplashParticle.h"
3
4SplashParticle::SplashParticle(Level *level, double x, double y, double z, double xa, double ya, double za) : WaterDropParticle(level, x, y, z)
5{
6 gravity = 0.04f;
7 setNextMiscAnimTex();
8 if (ya == 0 && (xa != 0 || za != 0))
9 {
10 this->xd = xa;
11 this->yd = ya + 0.1;
12 this->zd = za;
13 }
14}