This repository has been archived on 2023-01-01. You can view files and clone it, but cannot push or open issues or pull requests.
kaboomproxy/clientpackets/world_particles.js
2021-06-17 02:08:50 -03:00

6 lines
No EOL
153 B
JavaScript

module.exports = function(vanillaclient, client, server, data) {
if(data.particles > 20) {
data.particles = 20;
return data;
}
};