(Entity entityIn, RenderGlobal renderGlobal)
| 55 | } |
| 56 | |
| 57 | public static void entityRemoved(Entity entityIn, RenderGlobal renderGlobal) |
| 58 | { |
| 59 | synchronized (mapDynamicLights) |
| 60 | { |
| 61 | DynamicLight dynamiclight = mapDynamicLights.remove(entityIn.getEntityId()); |
| 62 | |
| 63 | if (dynamiclight != null) |
| 64 | { |
| 65 | dynamiclight.updateLitChunks(renderGlobal); |
| 66 | } |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | public static void update(RenderGlobal renderGlobal) |
| 71 | { |
no test coverage detected