Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

I've nearly completely updated my mod to the 1.9 release (1.9-12.16.0.1767-1.9). But i'm having serious trouble finding resolutions for these errors.

 

nightVision cannot be resolved or is not a field
potionTypes cannot be resolved or is not a field
The import net.minecraft.client.renderer.WorldRenderer cannot be resolved
The method getPotionDurationString(PotionEffect, float) in the type Potion is not applicable for the arguments (PotionEffect)
The method getPotionID() is undefined for the type PotionEffect
The method getWorldRenderer() is undefined for the type Tessellator
WorldRenderer cannot be resolved to a type

 

mc.thePlayer.removePotionEffect(Potion.nightVision.id);

Potion.nightVision.id - seems to have vanished from net.minecraft.potion.Potion.

While i can make a class to pass the ID of nightVision to removePotionEffect, since i share the code on github i'd rather use the propert method.

 

 

String durationString = Potion.getPotionDurationString(potionEffect);

Potion.getPotionDurationString(potionEffect) - Now requires a float

 

 

 

PotionEffect potionEffect = (PotionEffect)it.next();
Potion potion = Potion.potionTypes[potionEffect.getPotionID()];

Potion.potionTypes[potionEffect.getPotionID()] - potionTypes is missing, and getPotionID is missing.

 

        Tessellator tessellator = Tessellator.getInstance();
        WorldRenderer worldrenderer = tessellator.getWorldRenderer();

import net.minecraft.client.renderer.WorldRenderer; - is missing

 

Any help you can give is much appreciated, as until i can build it i can't test it for bugs.

Tessellator tessellator = Tessellator.getInstance();

        WorldRenderer worldrenderer = tessellator.getWorldRenderer();

 

Would now be.

 

Tessellator tessellator = Tessellator.getInstance();

VertexBuffer worldrenderer = tessellator.getBuffer();

 

VertexBuffer in net.minecraft.client.renderer.VertexBuffer not net.minecraft.client.renderer.vertexbuffer.VertexBuffer

 

 

  • Author

Tessellator tessellator = Tessellator.getInstance();

        WorldRenderer worldrenderer = tessellator.getWorldRenderer();

 

Would now be.

 

Tessellator tessellator = Tessellator.getInstance();

VertexBuffer worldrenderer = tessellator.getBuffer();

 

VertexBuffer in net.minecraft.client.renderer.VertexBuffer not net.minecraft.client.renderer.vertexbuffer.VertexBuffer

 

Thank you, that makes sense with one of the possible fixes eclipse suggested.

  • Author
String durationString = Potion.getPotionDurationString(potionEffect);

 

This is now String durationString = Potion.getPotionDurationString(potionEffect, 1);

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.