Skip to content

Commit

Permalink
Undid unnecessary logging
Browse files Browse the repository at this point in the history
  • Loading branch information
evanwporter committed Nov 18, 2024
1 parent ec81125 commit 0b1e3d2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/types/SAVTypes/radicalred/PK3RR.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export class PK3RR implements PluginPKMInterface {
trainerName: string
trainerGender: boolean
isLocked: boolean = false
originalBytes?: Uint8Array<ArrayBufferLike>
originalBytes?: Uint8Array

constructor(arg: ArrayBuffer | AllPKMFields) {
if (arg instanceof ArrayBuffer) {
Expand Down Expand Up @@ -212,7 +212,6 @@ export class PK3RR implements PluginPKMInterface {
this.dexNum = other.dexNum
this.formeNum = other.formeNum
this.privateHeldItemIndex = ItemGen3RRFromString(other.heldItemName)
console.log("ITEM", this.privateHeldItemIndex, other.heldItemName)
this.heldItemIndex = ItemFromString(other.heldItemName)
this.exp = other.exp
this.movePPUps = other.movePPUps
Expand Down

0 comments on commit 0b1e3d2

Please sign in to comment.