Merge pull request #111 from mollthecoder/patch-10
Create infLiqLight.js
This commit is contained in:
commit
6fa492eeb6
|
|
@ -0,0 +1,8 @@
|
|||
let oldLiqLightTick = elements.liquid_light.tick;
|
||||
let oldDelPixel = deletePixel;
|
||||
elements.liquid_light.tick = (pixel)=>{
|
||||
deletePixel = ()=>{};
|
||||
oldLiqLightTick(pixel);
|
||||
deletePixel = oldDelPixel;
|
||||
}
|
||||
window.addEventListener("load", ()=>{});
|
||||
Loading…
Reference in New Issue