Hbm's Nuclear Tech Mod

Hbm's Nuclear Tech Mod

1M Downloads

rbmk console refresh rate

AVASSON opened this issue ยท 2 comments

commented

Hello author, I want to modify the refresh rate of the RBMK console by changing the source code. Excuse me, how can I modify it?

commented

https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT/blob/master/src/main/java/com/hbm/tileentity/machine/rbmk/TileEntityRBMKConsole.java#L60

if(this.worldObj.getTotalWorldTime() % 10 == 0) {

10 is the delay between re-scans, if you want constant scanning then either use 1 or remove the condition entirely.

commented

thanks