YouHaveTrouble / minecraft-optimization

Minecraft server optimization guide
1.98k stars 90 forks source link

Typo's in EntityType list of `entity-per-chunk-save-limit` #48

Closed bram-pkg closed 2 years ago

bram-pkg commented 2 years ago

As you can see the default paper.yml has underscores in the entity names, I think the examples in README.md contains typo's because of this.

     entity-per-chunk-save-limit:
-      fireball: -1
-      small_fireball: -1
-      experience_orb: -1
-      snowball: -1
-      ender_pearl: -1
-      arrow: -1
+      arrow: 16
+      dragonfireball: 3
+      egg: 8
+      ender_pearl: 128
+      experience_orb: 16
+      fireball: 8
+      firework: 8
+      largefireball: 8
+      lingeringpotion: 8
+      llamaspit: 3
+      shulkerbullet: 8
+      sizedfireball: 8
+      snowball: 8
+      spectralarrow: 16
+      splashpotion: 3
+      thrownexpbottle: 3
+      trident: 16
+      witherskull: 4
+      wither_skull: 4
YouHaveTrouble commented 2 years ago

You might be correct here, as afaik paper just compares the values to EntityType enum, will correct the names soonish

bram-pkg commented 2 years ago

Thanks for the super quick response, in case you need the enum, I can post it here!

YouHaveTrouble commented 2 years ago

I'm good, just need to fire up text editor and go through it

YouHaveTrouble commented 2 years ago

fixed in 32e60b2

bram-pkg commented 2 years ago

Thanks a ton!