Fixed resource extraction
* Formula was mis-copied from the wiki, the result was multiplied by the provider's current quantity * Changed extraction per work unit from 1 to 10
This commit is contained in:
parent
b9bc5e038c
commit
44b6ec1920
3 changed files with 9 additions and 8 deletions
legacyworlds-server-beans-system/src/main/java/com/deepclone/lw/beans/sys
|
@ -66,8 +66,7 @@ public class ConstantsRegistrarBean
|
|||
defs.add( new ConstantDefinition( "game.resources.weightBase" , "Natural resources" , cDesc , 10.0 , 1.1 ,
|
||||
100.0 ) );
|
||||
cDesc = "Resources extracted per work unit, per (real) day, from a full provider with minimal difficulty.";
|
||||
defs.add( new ConstantDefinition( "game.resources.extraction" , "Natural resources" , cDesc , 1.0 , 1.0 ,
|
||||
true ) );
|
||||
defs.add( new ConstantDefinition( "game.resources.extraction" , "Natural resources" , cDesc , 10.0 , 1.0 , true ) );
|
||||
|
||||
// Happiness
|
||||
String[] hcNames = {
|
||||
|
|
Reference in a new issue