aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/items/ItemComb.java
diff options
context:
space:
mode:
authorConnor-Colenso <52056774+Connor-Colenso@users.noreply.github.com>2022-08-03 01:50:09 +0100
committerGitHub <noreply@github.com>2022-08-03 07:50:09 +0700
commit33910a2881b3aed51179b789fc927c19f28883b5 (patch)
tree3e9c4c7dc1bdb0f85720c2a06a440bd25e453947 /src/main/java/gregtech/common/items/ItemComb.java
parentd14ddda2c70cdcb3a9b2227f5891375d8298026e (diff)
downloadGT5-Unofficial-33910a2881b3aed51179b789fc927c19f28883b5.tar.gz
GT5-Unofficial-33910a2881b3aed51179b789fc927c19f28883b5.tar.bz2
GT5-Unofficial-33910a2881b3aed51179b789fc927c19f28883b5.zip
More OpV purge (#1188)
* Fix possible out-of-bounds error. * Bye bye OpV * Bye bye OpV * Some textures while I'm here * Test * Maybe Co-authored-by: GTNH-Colen <54497873+GTNH-Colen@users.noreply.github.com>
Diffstat (limited to 'src/main/java/gregtech/common/items/ItemComb.java')
-rw-r--r--src/main/java/gregtech/common/items/ItemComb.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main/java/gregtech/common/items/ItemComb.java b/src/main/java/gregtech/common/items/ItemComb.java
index 73a01f00b0..9d6f40449f 100644
--- a/src/main/java/gregtech/common/items/ItemComb.java
+++ b/src/main/java/gregtech/common/items/ItemComb.java
@@ -544,8 +544,7 @@ public class ItemComb extends Item {
HV, EV, IV,
LUV, ZPM, UV,
UHV, UEV, UIV,
- UMV, UXV, OpV,
- MAX;
+ UMV, UXV, MAX;
public int getVoltage() {
return (int) V[this.ordinal()];
}